如果 MS Chart Control 没有数据,我可以显示消息吗?
如果没有要绘制图表的数据,是否有办法在 MS 图表控件上显示“默认”消息?
我有一个图表,其中包含一些控件,允许用户选择各种日期范围。如果在该日期范围内没有要绘制图表的数据,则它当前仅显示任何内容(或者至少显示图例和背景,但仅此而已。)
我希望有一条消息说“此期间没有数据”或其他东西代替。
谢谢,
本
Is there a way to display a "default" message on a MS Chart Control if there is no data to chart?
I have a chart, with some controls that allow the user to pick various date ranges. If there is no data to be charted in that date range, it currently just displays nothing (or at least it shows the legend, and background, but that's it.)
I want there to be a message saying "no data for this period" or something instead.
Thanks,
Ben
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
基于 Chris 的响应,这里有一个更完整的示例:
在 ASPX 代码中,将 OnDataBound 处理程序添加到图表标记。这假设您使用 SqlDataSource 作为数据源。
在代码隐藏中,处理程序检查第一个系列是否有任何数据,如果没有,则插入红色注释。
Building on Chris's response, here's a more complete example:
In the ASPX code, add the OnDataBound handler to the chart tag. This assumes you are using a SqlDataSource for the data source.
In the code-behind, the handler checks if the first series has any data, and if it doesn't, inserts the annotation in red.
如果没有数据,您应该能够向图表添加注释。
You should be able to add an annotation to the chart if there is no data.
我猜您将检索到的数据转换为数组并将其用于图表绑定(如果是这样)
您可以使用标签,根据数组长度显示/隐藏它,因为如果图表没有数据,则没有属性可以显示特定文本。
I guess that you cast retrieved data to an Array and use it for chart binding, if so
you can use a label, show/hide it according array length, as there is no property to be displayed a certain text if chart has no data.