Search code examples
reporting-servicesssrs-2008bar-chart

SSRS 2008 Chart and conditional data labels


I have a SSRS 2008 stacked bar chart and, as you can see from the screenshot, the series labels are not readable when the data point is small.

My question is can you dynamically show \ hide individual labels within a series if the value is below a certain range?

enter image description here


Solution

  • You can't hide the labels based on individual criteria but you could choose to display Nothing instead of a value for each label.

    In the Series Properties' Label property, use and expression like:

    =IIF(Fields!YourField.Value < 10, NOTHING, Fields!YourField.Value)