Question

I am creating a report that shows client ticket status on a Chart control in SSRS. The problem is, when the number of clients are less, data fits perfectly on the chart but when the number of client records exceeds 20, chart tries to fit everything on it and the data is not properly readable.

I want to split my data in such a way if the number of records exceeds the maximum limit of the chart it splits into two.

Was it helpful?

Solution

I would wrap the Chart in a Tablix object. I would add a Tablix and associate it with the same dataset as the chart. I would delete all the columns bar one, and delete the Header and Footer rows. I would make the Details Row not Visible.

I would add a Row Group on a calculation to group by row number in groups of 20 e.g.

= RowNumber ( Nothing ) Mod 20

For the Group Header Row, I would resize it to fit the chart, then cut the Chart and paste it inside the Group Header row.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top