I am using amCharts to prepare bar chart
Please check the Fiddle for my bar chart as follows:
- I am getting the maximum value of Y axis as 150. I need maximum value of Y axis as 100.
- I am getting the X-axis values as 1,4,7,10 only. I need the values in all bars as 1,2,3...10.
- I need label of Y axis as percentage and X axis as question numbers
What I tried to putting Maximum for Y axis as follows:
I have added this lines for handling Y axis as follows:
valueAxis.autoGridCount = false;
valueAxis.gridCount = 10;
valueAxis.labelFrequency = 100;
But not getting. Please guide me!