Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要将 .NET 图表(类 System.Web.UI.DataVisualization.Charting.Chart)的 X 轴和 Y 轴上的点指示为连字符样式的标记。现在 X 和 Y 轴是完全平坦的。
下面是我希望如何设置图表轴样式的图片(截取自另一个图表工具的屏幕截图):
我怎样才能做到这一点?
我自己找到了解决方案。这里的关键属性是 MajorTickMark 和 MinorTickMark。例如。
chartAreaObject.AxisX.MajorTickMark.Enabled = true; chartAreaObject.AxisX.MajorTickMark.LineColor = Color.White;