如何重置 MSCArt 值
我有一个组合框,其中包含不同的文件名,每次我选择一个值时,都应读取相应的文件并生成相应的图表。现在,当我选择第一个文件时,图表会正确绘制,但如果我从组合框中选择另一个值,则图表将添加到现有值中,而不是重新绘制图表值。
我尝试使用序列化器,但这并没有似乎不起作用...我也无法在任何地方找到解决方案。
只需知道我需要添加什么来将现有图表重置为默认值并在每个组合框选择上重新绘制。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要清除每个系列的值。
You'll need to clear the values from each of your Series.
foreach(chart2.Series 中的 var 系列)
{
系列.Points.Clear();
}
foreach (var series in chart2.Series)
{
series.Points.Clear();
}