문제

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.

도움이 되었습니까?

해결책

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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top