如何重置 MSCArt 值

发布于 2024-11-06 10:25:01 字数 211 浏览 0 评论 0原文

我有一个组合框,其中包含不同的文件名,每次我选择一个值时,都应读取相应的文件并生成相应的图表。现在,当我选择第一个文件时,图表会正确绘制,但如果我从组合框中选择另一个值,则图表将添加到现有值中,而不是重新绘制图表值。

我尝试使用序列化器,但这并没有似乎不起作用...我也无法在任何地方找到解决方案。

只需知道我需要添加什么来将现有图表重置为默认值并在每个组合框选择上重新绘制。

I have a combo-box which contains different names of files and every time i select a value the respective file should be read and respective graphs should be generated. Now as i select the first file the charts are drawn correctly but if i select another value from the combo-box then the charts instead of re-plotting the charts values are added to the existing values..

I tried using serializer but that doesn't seem to work...neither i am able to find a solution anywhere.

Just need to know what i need to add as to reset the existing chart to default value and redraw on every combo-box selection.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

栀梦 2024-11-13 10:25:01

您需要清除每个系列的值。

chart.Series["MySeries"].Points.Clear();

You'll need to clear the values from each of your Series.

chart.Series["MySeries"].Points.Clear();
往昔成烟 2024-11-13 10:25:01

foreach(chart2.Series 中的 var 系列)
{
系列.Points.Clear();
}

foreach (var series in chart2.Series)
{
series.Points.Clear();
}

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