Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的 WPF 应用程序中使用 Telerik Rad Chart 来绘制一些图表。问题是当没有数据时,图表会显示模糊的黑色图像。
有什么办法可以让图表在数据不存在时不显示此图像。
或者,如果我们还有其他事情可以做,我会很高兴。
谢谢。
把它下面的代码放在.cs中(页面后面的代码)
chartname.PlotArea.EmptySeriesMessage.TextBlock.Text = "数据不可用";
这避免了图像,如果没有数据,它将显示消息“数据不可用”。