将系列动态添加到 MSCHART 区域
我需要将系列动态添加到 MSCHART ChartArea。 我从数据表中检索列名。 系列名称必须是列名称。 我可以在字符串中构建 SERIES ADD,但是然后呢?
Series Trigger_Level = chart1.Series.Add("Trigger Level");
使用 C# 开发
I need to dynamically add series to an MSCHART ChartArea.
I retrieve column names from a datatable.
The series name needs to be the column name.
I can build the SERIES ADD in a string, but then what?
Series Trigger_Level = chart1.Series.Add("Trigger Level");
Developing in C#
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用以下代码动态添加系列:
A series can be dynamically added with the following code: