Reputation: 9104
I have this chart, but as you can see it has some problems:
.staggeredLabels(true)
but they still overlap.EDIT: I solved the second one by removing labels. Actually I don't remove them but rather hide them with:
.nv-x text {
display: none;
}
Upvotes: 2
Views: 2224
Reputation: 3205
The blank spot is actually the key. It seems like maybe your object doesn't have a name?
Upvotes: 0
Reputation: 9104
Since no one answered I just post the solution to the second problem:
.nv-x text {
display: none;
}
Upvotes: 2