Reputation: 2074
If I have a lot of values with close values, the data labels overlap. For example this sequence of 14's:
Is there a way to de-clutter this somehow or "hide" labels that contribute to the clutter?
Upvotes: 1
Views: 4367
Reputation: 140
For version 3.x you can try xAxis.setLabelCount(4)
, but in your case may be better is xAxis.setGranularity(1f)
Upvotes: 5