How do I resolve SSRS Chart Axis issue - reporting-services

Wondering if I could get help.
I need to be able to view my report within 0-100%, but the chart is showing from 2000 to 12000 on my Y axis

Related

SSRS stacked two series column chart

I want to create a chart which should display this data structure:
The chart should be something like that:
On x - Sum of Sum_POS_PREIS_NETTO seperated by KLASSIFIKATION
On y - Group by POS_SACHKONTO and MONTH
Is there any way to do that? I'm working on Microsoft SQL Server Report Builder.
Thank you

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?

Tooltip and Y Axis data Points mismatch SSRS

I have a SSRS report which shows CPU Trend of Quarters in a year. Below is my chart. The chart tooltip values 12% for Q1 and 9% for Q2 which matches the data from the query. But the Axis values are so different and it represent some wrong values.
I' not sure what I missed. I have not add any customization to the Axis so by default it should align to the values of data. Please help to adjust the Y Axis accordingly,.

SSRS chart should look like my excel chart

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.

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.