Silverlight/WPF 图表工具包。我可以更改 CategoryAxis 上刻度线的频率吗?
LinearAxis 上有 Interval 属性,但 CategoryAxis 上没有。我需要控制 X 轴上刻度线的频率。
本机逻辑做了太多标记,即使我将图表拉伸到 3 个宽显示器,我也无法阅读!
There is Interval property on LinearAxis but none on CategoryAxis. I need to control frequency of tick marks on X axis.
The native logic does so many marks that I cant read even if I stretch the chart across 3 wide monitors!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一些建议...
1.) CategoryAxis 有一个 AxisLabelStyle 属性,您可以使用它来设置具有较小 FontSize 或更紧凑的 FontFamily 的样式
2.) CategoryAxis 还具有 MajorTickMarkStyle 您可以使用它来设置线条描边画笔或描边厚度。使用 StrokeThickness 0 来隐藏它们。
3.) 也许您可以找到一种方法来更改 AxisLabel 容器的宽度并使标签文本换行。
祝你好运
吉姆·麦柯迪
A couple of suggestions...
1.) CategoryAxis has a AxisLabelStyle property which you can use to set in a Style with a smaller FontSize, or a more condensed FontFamily
2.) CategoryAxis also has MajorTickMarkStyle which you can use to set the Line Stroke brush or StrokeThickness. Use a StrokeThickness of 0 to hide them.
3.) Maybe you can find a way to get a changethe Width of the AxisLabel's container and make the label text wrap.
Good luck
Jim McCurdy