SSRS BIDS 2008 气泡图 - 气泡大小范围

发布于 2024-12-13 08:17:52 字数 183 浏览 3 评论 0原文

我在 SSRS BIDS 2008 中有一个气泡图。是否可以设置范围,例如:

10-50 = 气泡大小 10、51-100 = 气泡大小 20、 等等,等等......

我已经设置了 BubbleMaxSize 和 BubbleMinSize 属性,但是我发现由于我的范围在数量上非常接近,因此很难区分稍大的和较小的。

I have a bubble chart in SSRS BIDS 2008. Is it possible to set ranges for example:

10-50 = bubble size 10, 51-100 = bubble size 20,
etc, etc....

I have set the BubbleMaxSize and BubbleMinSize properties however I am finding that as my ranges are very close in amount it is hard to distinguish slightly bigger ones than smaller ones.

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

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

发布评论

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

评论(1

旧情勿念 2024-12-20 08:17:53

右键单击气泡图的系列以打开“系列属性”对话框。第一个窗格“系列数据”有一个“气泡大小”字段。

使用文本框 (fx) 旁边的“功能”按钮弹出另一个对话框,您可以在其中输入类似以下内容:

=SWITCH(
 Fields!SizeField.Value > 100, 4,
 Fields!SizeField.Value > 50, 3,
 Fields!SizeField.Value > 10, 2,
 Fields!SizeField.Value > 0, 1)

气泡图评估此字段返回的值的范围,然后相应地映射这些大小。因此,我的公式将给出 BubbleMinSize 和 BubbleMaxSize 之间的四种不同尺寸。

Right click on the series for your bubble chart to get the Series Properties dialog. The first pane, Series Data, has a field for Bubble size.

Use the Function button next to the text box (fx) to pop up another dialog, where you can enter something like:

=SWITCH(
 Fields!SizeField.Value > 100, 4,
 Fields!SizeField.Value > 50, 3,
 Fields!SizeField.Value > 10, 2,
 Fields!SizeField.Value > 0, 1)

The bubble chart evaluates the range of values returned by this field and then will map these sizes accordingly. So my formula will give four distinct sizes between BubbleMinSize and BubbleMaxSize.

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