XRChart:如何将数字轴标签设置为整数?
我有一个浮点数在 0 到 6 之间的系列。
我希望将其显示在条形图中。
如何强制 DevExpress XRChart 将整数 0,1,2,3,4,5,6 显示为轴标签?
它不断输入分数(例如:0、0.5、1.0、1.5 .... 5.5、6.0)。
我尝试将精度设置为 0 但得到 (0,1,1,2,2,3,3,4,4,5,5,6) - 这显然不是我想要的。
感谢帮助 - 谢谢。
I have a series with floating point numbers between 0 and 6.
I wish to display this in a bar graph.
How do I force DevExpress XRChart to display the whole numbers 0,1,2,3,4,5,6 as axis labels?
It keeps putting in fractions (eg: 0, 0.5, 1.0, 1.5 .... 5.5, 6.0).
I tried to set precision to 0 but get (0,1,1,2,2,3,3,4,4,5,5,6) - which is clearly not what I want.
Help appreciated - thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这可以使用以下代码来完成:
axis.GridSpacingAuto = false;
轴.GridSpacing = 1;
另请参阅以下主题:
http://documentation.devexpress.com/#WPF/DevExpressXpfChartsAxis_GridSpacingtopic< /a>
This can be done using the following code:
axis.GridSpacingAuto = false;
axis.GridSpacing = 1;
Please also refer to the following topic:
http://documentation.devexpress.com/#WPF/DevExpressXpfChartsAxis_GridSpacingtopic