1
votes

I have a basic bar chart to show number of claims received by month. For most clients it shows normally:

normal

But for some the bars span across multiple axis points.

bar span

I have formatted the axis so that it spans the previous 13 months from the report month end date as such:

axis options

expression for the minimum interval is:

=DateAdd(dateinterval.Month,-13,Parameters!prm_month_end.Value)

the axis labels are on auto-fit but disabling them doesn't make a difference. I don't think its my SQL statement but all it is is a simple count of claims by month.

Any thoughts?

1

1 Answers

0
votes

Update: I fixed it. I set the maxpixelpointwidth to 50:

maxpixelpointwidth

Updated Chart