Report Builder 3.0 图表 - 需要显示空类别组
我正在使用 SQL Server Report Builder 3.0 创建条形图。该图表是满意度分数的计数(优秀、非常好、良好、一般、差),并有一个条形显示每个相应的分数。它工作得很好,除非没有带有特定分数的记录。我希望能够显示所有选项,即使值为零。有没有办法在那里放置占位符或以其他方式强制它显示?
I am using SQL Server Report Builder 3.0 to create a bar chart. The chart is a count of satisfaction scores (Excellent, Very Good, Good, Fair, Poor), with a bar showing each of the respective scores. It works beautifully, except in the case where there are no records with a specific score. I would like to be able to show all of the options, even if there is a value of zero. Is there a way to put a placeholder there or otherwise force it to show?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建另一个包含所有类别名称的表。
然后将类别名称插入表中。
然后,对于条形图数据集,
结果将是一个包含 (CategoryName, Count) 记录的数据集。
Create another table that contains all of the category names.
Then insert the category names into the table.
Then for your bar chart dataset,
The result will be a dataset with (CategoryName, Count) records.