Chartfx 新图表对象未初始化?

发布于 2024-08-26 07:53:39 字数 228 浏览 7 评论 0原文

当我通过以下方式创建新的图表对象时:

ChartFX.WebForms.Chart theChart = new ChartFX.WebForms.Chart();

当我在 Visual Studio 2005 中通过断点创建后立即查看行时,我注意到新创建的图表中有 3 行包含数据。这是一个错误吗?或者我需要调用特定的函数吗?图表的数据表在创建时不应该初始化为全 0 吗?

When I create a new chart object via:

ChartFX.WebForms.Chart theChart = new ChartFX.WebForms.Chart();

When I took a look immediately the row after creation via breakpoint in Visual Studio 2005 I noticed there are 3 rows in the newly created chart that have data. Is this a bug? or do I need to call a specific function? Shouldn't the data table for the chart be initialized to all 0's on creation?

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

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

发布评论

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

评论(1

空城缀染半城烟沙 2024-09-02 07:53:39

根据 ChartFX 的说法,这是设计使然。声明图表对象后,您可以使用以下方法将其清除:

chart1.Data.Clear();

According to ChartFX this is by design. After the declaration of the chart object you can clear it out using:

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