SSRS Expression will not affect chart title visibility

后端 未结 1 1865
野的像风
野的像风 2021-01-24 21:10

I\'m trying to use an expression in the visibility tab of the Chart title properties window to hide the chart title based on a Boolean parameter. parameter will hide other parts

相关标签:
1条回答
  • 2021-01-24 22:01

    You thought you were angry before - this seems to be yet another bug that will probably never be fixed.

    The Chart Title Visibility works, if you also use a Boolean True or the same function for the Caption (the text display in the title). Ugh.

    This Caption makes the Title invisible.

    Maybe you can make this lameness work for you though - have the caption property be the title if visible or True if not:

    =IIF(Parameters!Visible.Value = FALSE, "Caption Title", CBool(1))
    

    Since every bug that I've cared about is Closed as Won't Fix or WAD, I wouldn't bother submitting this one to Microsoft. I know - it's so disappointing.

    0 讨论(0)
提交回复
热议问题