SSRS 2005 图表:使用表达式自定义线条颜色?
有没有办法更改 SSRS 图表中特定行项目的颜色?例如,在“数据”选项卡中使用系列组或值区域内的表达式,或者可能使用变量?我不太喜欢当前图表中的调色板,希望某些区域更加突出,但不确定如何开始。
谢谢。
Is there a way to change the color of specific line items in an SSRS chart? For example, in the Data tab using an expression within a series group or the values area, or perhaps with a variable? I'm not terribly keen on the color palette that in my current chart, wanting certain areas to stick out a bit more and not sure how to get started.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们这样做是为了确保不同部门在所有报告中的颜色保持一致。在我们的数据库中,我们的部门表上有一个颜色字段,然后在条形图中我们执行以下操作:
在“颜色”文本框中,输入所需颜色的表达式。鉴于我们的部门数据库中已经有此内容,我们只需使用:
=Fields!DeptColour.Value
,然后我们的部门在每个条形图上的颜色都相同。
对于折线图,您必须执行相同的操作,只不过这次您将颜色表达式放在“系列样式”对话框的“边框和线条”选项卡上的“颜色”文本框中(而不是放在“填充”中)。
We do this to ensure different departments are coloured consistently across all reports. In our database we have a colour field on our department table, then in the bar graphs we do the following:
In the Color text box, put the expression that you want the colour to be. Given that we have this in our department database already, we simply use:
=Fields!DeptColour.Value
and then our departments are coloured the same on every bar graph.
For line graphs, you have to do the same except this time you put the colour expression in the Color text box on the Border and Line tab on the Series Style dialogue (rather than in the Fill).