C# 图表系列中的虚线?

发布于 2024-10-17 11:45:34 字数 162 浏览 7 评论 0原文

我在我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

行至春深 2024-10-24 11:45:34

请参阅 DataPointCustomProperties。 BorderDashStyle 属性。例如...

_chart.Series[1].Color = Color.Blue;

_chart.Series[0].Color = Color.Blue;
_chart.Series[0].BorderWidth = 3;
_chart.Series[0].BorderDashStyle = ChartDashStyle.Dash;

...给我:

在此处输入图像描述

See the DataPointCustomProperties.BorderDashStyle property. For example...

_chart.Series[1].Color = Color.Blue;

_chart.Series[0].Color = Color.Blue;
_chart.Series[0].BorderWidth = 3;
_chart.Series[0].BorderDashStyle = ChartDashStyle.Dash;

...gives me:

enter image description here

可遇━不可求 2024-10-24 11:45:34

这与 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;

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文