Chartfx 新图表对象未初始化?
当我通过以下方式创建新的图表对象时:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 ChartFX 的说法,这是设计使然。声明图表对象后,您可以使用以下方法将其清除:
According to ChartFX this is by design. After the declaration of the chart object you can clear it out using: