admin管理员组文章数量:1349724
I am using amCharts to prepare bar chart
Please check the Fiddle for my bar chart as follows:
FIDDLE
- 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!
I am using amCharts to prepare bar chart
Please check the Fiddle for my bar chart as follows:
FIDDLE
- 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!
Share Improve this question edited Aug 20, 2015 at 7:39 martynasma 8,5952 gold badges32 silver badges47 bronze badges asked Aug 20, 2015 at 7:20 SanthucoolSanthucool 1,7262 gold badges39 silver badges92 bronze badges1 Answer
Reset to default 8Value axis scale
To set fixed scale for your value axis, use minimum
and maximum
properties:
valueAxis.minimum = 0;
valueAxis.maximum = 100;
Category (horizontal) axis label frequency
The chart automatically tries to determine the frequency of the labels based on available space so that the axis does not seem cluttered.
To force a certain number of grid lines on a category axis, use autoGridCount
and gridCount
properties of the chart's categoryAxis
. (note that it's categoryAxis
, not valueAxis
as you have in your code)
chart.categoryAxis.autoGridCount = false;
chart.categoryAxis.gridCount = 10;
Adding percent sign to value axis labels
You can use value axis' unit
and unitPosition
properties to add any characters next to the values.
valueAxis.unit = "%";
valueAxis.unitPosition = "right";
Here's your fiddle updated with all of the above.
版权声明:本文标题:javascript - amCharts set maximum Y axis and X axis values are missing from bar labels charts - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743864418a2552321.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论