SSRS chart should look like my excel chart - reporting-services

I am doing an SSRS report which needs to have a chart that looks like this
Excel chart
and so far on my ssrs report I have this
SSRS chart
how could I make my ssrs chart the same on my excel chart?
Thank you in advance

First thing is to put all your data together. You want to compare different years with the same date. You'll need to change your date field to just use the month and day:
=FORMAT(FIELDS!YourDateField.Value, "MM-dd")
For the axis label, use the Day of the Week:
=FORMAT(FIELDS!YourDateField.Value, "dw")
For your markers, go to Series Properties->Markers tab and set Marker Type to Auto to let SSRS assign a different type to each. If each year is a different series, you can assign them individually.
You can right-click on an Axis and go to properties to format them to look more like the Excel version.
There's a bit more differences but mostly formatting.

Related

SSRS - add textbox data to a chart

I've created a report in SSRS. The report has a chart in where points are plotted on a scatter chart. My issue now is that we need a line of best fit, which is not directly supported by SSRS.
In order to work it out (as there are a lot of calculations involved to get it from the data we've got) I've had to use custom code. As such, the values are now contained in text boxes (txtDate1, txtValue1, txtDate2, txtValue2).
Does anyone know how I'd be able to get these into my chart (so a point at the locations described in [txtDate1][txtValue1] and [txtDate2][txtValue2])? Or would I have to go back to SQL to figure this out in there?

SSRS Bar Chart Grouping by Date Range

I have a dataset that calculates the actual business days. I've added a bar chart with #beginningdate and #enddate parameters. When I preview the report it only brings back one bar (the first range "1-10 Days") in the report.
The report renders with all 8 bars on the chart I'm only using the #enddate parameter, but the performance on the report is horrible.
Here's my ranges for the chart:
I'm sorting the grouping with the following expression:
Notice the As of Date parameter...this takes a long time to render.
What I need is to get the bar chart (as shown above) shown the same when I have set-up the grouping when I enter a date range.
As you can see below, the report only returns one bar in the chart even though I have 2 date parameters and changed my dataset AND A.EFFECTIVEDATE BETWEEN (#ASOFDATE) AND (#ENDDATE)
How do I make this work to pull back the bars in the chart when adding a date range?
Hopefully this makes sense.
Thank you,
I figured this issue out. What you have to do is right click on the X axis. Under the Axis Options go to intervals and change it from Auto to 1. This fixed my issue and I can now run a chart with a date range.
My chart looks like this with a date range.

Broken SSRS Linechart

I am creating a line chart in SSRS. The problem is: I need to display all the date range so I set the horizontal axis as Scalar. However, the line chart will not able to connect each data point in the sequential order.
Anybody had similar issues?
You could try to sort the data beforehand in your dateset or try sorting it via the sorting tab in the properties for your respective grouping.

SSRS chart: Dates in horizontal axis, Year as tick marks

I have an SQL Server Report (SSRS) with a chart in it.
The chart has Date as Horizonral axis. These are days from e.g. 01-01-2010 till now (01-01-2010, 02-01-2010, 03-01-2010, ..., 05-12-2014. It is quite a big (long) chart).
I would like to display (major) tick marks indicating start of each year only. So tick marks on 01-01-2011, 01-01-2012, 01-01-2013. No labels are necessary.
Is it possible to specify tick marks in such a way?
I am using Report Builder 3.0.
Thank you very much in advance for any help.

SSRS Cumulative Chart or S graph

How to create a Column chart with a cumulative line graph running over the columns. I have a dataset that returns the columns months,Qty1 and Qty2 . Now I need a column chart that compares these two quantities for every month in the column and a cumulative line for each Qty running over the column charts.
Thanks !
To get a line chart on top of your bar chart:
(Assuming you're using Visual Studio to design your report, these steps may be different in other environments):
Create your bar chart with the monthly bars that you want.
Click on the chart, then in the ChartData window that pops up, click the green "+" in the Values section, and add the field that contains the value you want to use in your line chart.
Once the value is added, right click it in the ChartData window, and choose "Change Chart Type" - change to a line chart.
Tweak your category, series, and axis settings until it renders in a manner you like.
NOTE: If your cumulative field isn't already a running aggregate, you're going to need to either add such a field to your dataset, or use an expression to work out the aggregation; the line chart won't do that for you.