Reputation: 6554
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?
Upvotes: 3
Views: 1639
Reputation: 10880
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)
Upvotes: 3