Reputation: 197
I have added the following 4 dates in my Chart View, in TimeSeries.
2-Jan-2013
3-Jan-2013
4-Jan-2013
7-Jan-2013
When I see the result in the emulator, the graph shows 5th and 6th Jan also. How do I remove the dates which I have not included?
I am preparing a chart to show traffic during working days. So, I want to add the next Monday immediately after this Friday. Please suggest any solution.
Upvotes: 1
Views: 69
Reputation: 32391
You can fix the behavior by calling:
renderer.setXRoundedLabels(false);
Upvotes: 1