All Chart Values Do Not Show In Line Graph In Achartengine
Iam creating a line graph with 2 lines. Everything is displayed properly except when i use renderer.setDisplayChartValues(true) the values are plotted but not all titles of the val
Solution 1:
You can change the minimum distance between chart values in order to get more of them displayed. For instance:
renderer.setDisplayChartValuesDistance(10);
Post a Comment for "All Chart Values Do Not Show In Line Graph In Achartengine"