我在设计模式下有一个SSRS数据条形图(如图1.0所示),非常好。但是,当我运行报告时,图表上的上边距会扩大(参见图2.0)
我做了一些研究,但我找不到任何与此问题相关的可行解决方案。此数据条形图动态高度属性的表达式配置为显示y轴中的所有值。
表达式是
= Switch(ReportItems(“HiddenTextBox”)。值< = 10,“1.8 in”,ReportItems(“HiddenTextBox”)。值= 20,“1.7 in”,ReportItems(“HiddenTextBox”)。值= 30 ,“1.6 in”,ReportItems(“HiddenTextBox”)。值= 40,“1.5 in”,ReportItems(“HiddenTextBox”)。值= 50,“1.4 in”,ReportItems(“HiddenTextBox”)。值> 50, (ReportItems(“HiddenTextBox”)。值 - (ReportItems(“HiddenTextBox”)。Value / 1.2))&“in”)
这是在图表DynamicHeight
中设置的有没有人遇到同样的问题?如何调整/修复图表的上边距?
非常感谢任何帮助。