Sql – Reporting Services Chart – Hard Coded Series

reporting-servicessql serverssrs-2008

I am developing an SSRS 2008 report which contains a number of simple charts. On the x axis I have the 12 months of this year – Jan 2009 thru December 2009. On the Y is an integer value ranging from 0 to 100 in increments of 10. I am plotting the number of times an issue occurred per month. So January could have a value of 10, February 30, etc. etc.

I would like to have a horizontal line/series that is constant and shows the yearly average for 2008. So, say the average was 30 issues per month in 2008, I would like for that line to be shown in my chart. Basically, I want to draw a straight line across the chart for that value… I can see how to add more complex series, but this seemingly simple task is getting the better of me.

Doe anyone have any idea how this could be accomplished?
Thanks in advance,
Jason

[Update] To add some further details, I am already pulling the average for each row in my dataset and have it set up as its own series. However, rather than plotting a line, this approach plots individual points for each month. While this is close to what I want, I need to join the dots so to speak. The chart is of the Error Bar (Range) variety.

Best Answer

Can you use a column / line hybrid chart? If so then add a constant or dynamic target value to the chart:

Design the chart. On the Data tab in the Chart Properties dialog box, add a new data value (for example, Target). Set the target value (see the example in Figure 9 on link this uses a constant target value of 100000 across all categories but you can do it dynamically too). Make sure to use an expression starting with = (equals). Otherwise, the value is not interpreted as a numeric value.

See the example on the MS charts page at http://msdn.microsoft.com/en-us/library/aa964128.aspx

Related Topic