Phil Murray
Phil Murray

Reputation: 6554

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

Upvotes: 3

Views: 1639

Answers (1)

Hannover Fist
Hannover Fist

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

Related Questions