C# 图表系列中的虚线?
我在我的 C# WinForms 应用程序中使用 .net 4.0 中的图表控件。 我有两个系列的数据显示为折线图。
我基本上将供给和需求绘制为时间的函数。 我希望需求是某种颜色的实线,供应是相同颜色的虚线。
我可以很好地设置颜色,但我找不到任何可以将线条样式设置为虚线的地方。
I'm using the Chart control from .net 4.0 in my C# WinForms app.
I have two series' of data displayed as line graphs.
I'm graphing basically a supply and demand as a function of time.
I want the demand to be a solid line of some colour, and the supply to be a dashed line of the same colour.
I can set the colour fine, but I can't find anywhere where I can set the line style to be dashed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请参阅
DataPointCustomProperties。 BorderDashStyle
属性。例如......给我:
See the
DataPointCustomProperties.BorderDashStyle
property. For example......gives me:
这与 Visual Studio 2010 版本的图表控件略有不同:
this.chart1.Series["Data1"].BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;
This changes slightly with Visual Studio 2010's version of chart control:
this.chart1.Series["Data1"].BorderDashStyle = System.Windows.Forms.DataVisualization.Charting.ChartDashStyle.Dash;