Hi i have the following problem.
I’m doing a chart in SSRS 2008. I’m doing a count and the result of the count is 2.
Because of the little count the chart is repeating th values on the Y axis. This is not happening when the count is 50 for example.

How can i get rid of the repeating values 1 1 and 2 2. Of course if i set the interval to 1 the problem is fixed but if the count is 50 the interval will show from 0 to 50(0, 1, 2 … 50 and i don’t want that)
I hope someone has the answer, thank you.
You can set the interval property of the Y axis to resolve the issue. To set the interval property
value =IIF( Fields!columnname.Value < 10, 1, 0)Click OK -> OK
That’s all.