Spurious Lines In My Line Chart
Feb 13, 2008
I create a rdlc file that contains a line chart with 3 lines that will plot in it. I put the proper data field in "series" and everything plots fine, except I get a spurious line that goes from the end of one line to the start of another line (or possibly back to itself, I can't tell). In another line chart I have 3 lines but get 2 spurious lines.
Anyone know how this happens or how I can fix it? The data is ordered and I don't see anything that would cause this..
Thanks,
Craig
View 1 Replies
ADVERTISEMENT
Feb 13, 2008
I am creating a simple line chart using SSRS 2005. The chart will display date vs. cumulative enrollment. In the line chart I want to display two lines. One line represents expected enrollment data and the other represents actual enrollment data. I would like the expected data line to be a dashed line and the actual line to be a solid line. I have a single dataset that contains data for both lines. I have added a column to the dataset that acts as a flag to indicate whether the data point is expected or actual. I have dropped the enrollment field from my dataset into "Drop data fields here". I have dropped the date field from my dataset into "Drop category fields here". I have dropped the flag field from my dataset into "Drop series fields here".
When I change the style of the series it changes the styles of both lines. How can assign a different line style to each line? Is this even possible with the way I have set up the chart? Is there another way to set up the chart to accomplish what I am trying to do?
View 1 Replies
View Related
Oct 21, 2015
I need to create a chart with the following features
1) Bar chart that has data for 3 years (3 series)
2) Line chart that has the same data as per the above points on the bar chart but this is a running total. (3 series)
3) These data points are for the 12 months
4) there should be a secondary axis for the cumulative one
Can I create this using the same data set?
View 6 Replies
View Related
May 4, 2012
I need the Trend line for the following data in Line chart they are the following data. The following are the graph are my output and i need the trend line for these Key_gap value.
This is the link [URL] ....
I need the same trend line for the Bar-Chart in SSRS 2005.
View 5 Replies
View Related
Feb 7, 2007
We have a line graph which plots the actual data points (x,y), everything is working fine with this graph. Now we need to add a trend line to this existing graph after going thro. the articles we came to know that there is no direct option in SSRS to draw a trend line. So we need to calculate the trend values ourselves which we need to plot as atrend line. This trend line is similar to the trend line which comes in Excel chart, do anyone know how to calculate the trend values from the actual data points. We got through several formulas, but were not clear, have anyone tried out exactly the same, if so please help us out by providing an example to calculate the trend values.
View 1 Replies
View Related
Nov 28, 2007
Hi,
The chart is set to simple line
I can not get my SSRS chart to show just the dots, instead it is joining the points together and show the points joining together and therefor appear as lines..
even tried setting the chart to simple scatter but then nothing appears on graph.
Any thoughts please?
View 1 Replies
View Related
Oct 21, 2006
I'm trying to produce a chart that has both actual data values from a database and matching "line of best fit" plots on the one chart. I have 4 data series, 2 of the actual data values and 2 that represent the values for the "line of best fit". What I want to do is:
Plot the actual values just as data points (joining them with lines in meaningless) and
Plot the "line of best fit" values as a line.
When I edit the data series on the scatter chart, I can see the "Plot data as line" option but it is "greyed" out.
Have I missed something really simple here or is this not possible. I'm using RS2005
Many thanks
Simon
View 1 Replies
View Related
Jan 16, 2008
Hi
Anyone have any idea how to make a line style dashed or dotted in a line chart please?
If I change the series style to dashed or dotted it still appears as a solid line, yet the legend displays a dashed or dotted line....
Thanks
View 7 Replies
View Related
Jul 20, 2005
Hello,I'm trying to execute a file containing few SQL statements.CREATE VIEW test1 AS SELECT * FROM table1;CREATE VIEW test2 AS SELECT * FROM table2;The standard SQL way is to end a statement with semi-colon.But doing that,it doesn't work in SQL Server.After changing ";" to "GO", it works fine.Is there anyway we can stick to ";" to indicate the end of statement.I don't want to create scripts which works only in SQL Server.Please comment.Thanks in advance.
View 3 Replies
View Related
Mar 11, 2008
I need to, ultimately, create a flatfile for exporting insurance information to a third-party vendor. Each individual is to have no more than 1 line per file, which contains their coverage information, if any, on 4 different type of insurance. What i need is for 2 fields in a table to determine the output for multiple fields in the flatfile.
What I have so far works, to an extent. If I have insurance types 1, 2, 4 (of types 1-4) required output is (__ = 2 blank spaces):
1A 1B 1C 1D 1E 2A 2B 2C 2D 2E 3A 3B 3C 3D 3E 4A 4B 4C 4D 4E
== == == == == == == == == == == == == == == == == == == ==
Y N __ MD XX Y N __ MD XX N __ __ __ __ Y N __ DN XX
If they have coverage, A always = Y, B always = N, C always = blank(null), D is their ins. type, E is their cov. type(CASE statement). if they DON'T have that type of coverage, A always = N and the remaining field are NULL.
After a lot of work, and scouring a forum or 2, I attempted a whole lot of CASE functions. Below is an sample of code representing the 1x statements. This same code is repeated 4 times with the 1x being altered with 2x, 3x, 4x.
CASE HB.PLAN_TYPE
WHEN '10' THEN 'Y'
ELSE 'N' END AS 1A,
CASE HB.PLAN_TYPE
WHEN '10' THEN 'N'
ELSE ' ' END AS 1B,
' ' AS 1C,
CASE HB.PLAN_TYPE
WHEN '10' THEN HB.BENEFIT_PLAN
ELSE ' ' END AS 1D,
CASE HB.PLAN_TYPE
WHEN '10' THEN (CASE WHEN HB.COVRG_CD ='1' THEN 'XX'
WHEN HB.COVRG_CD ='2' THEN 'YY'
WHEN HB.COVRG_CD ='3' THEN 'ZZ'
ELSE 'WW' END)
ELSE ' ' END AS 1E,
It works to an extent. While the desires/required output it above, the output this produces (same scenario) is:
1A 1B 1C 1D 1E 2A 2B 2C 2D 2E 3A 3B 3C 3D 3E 4A 4B 4C 4D 4E
== == == == == == == == == == == == == == == == == == == ==
Y N __ MD XX N __ __ __ __ N __ __ __ __ N __ __ __ __
1A 1B 1C 1D 1E 2A 2B 2C 2D 2E 3A 3B 3C 3D 3E 4A 4B 4C 4D 4E
== == == == == == == == == == == == == == == == == == == ==
N __ __ __ __ Y N __ MD XX N __ __ __ __ N __ __ __ __
1A 1B 1C 1D 1E 2A 2B 2C 2D 2E 3A 3B 3C 3D 3E 4A 4B 4C 4D 4E
== == == == == == == == == == == == == == == == == == == ==
N __ __ __ __ N __ __ __ __ N __ __ __ __ Y N __ DN XX
While there is supposed to be 1 line, regardless of number of insurance types, it only produces 1 line per type. I first tried this in Access, and was able to get it to work, but it required multiple queries resulting in a crosstab, export to Excel and manually manipulate the data, export to text file to manipulate, import back into Excel to manipulate, import back into Access and finally export into a flatfile. Far too much work to produce a file which is why I'm trying to convert it to raw SQL.
Any assistance in this matter would be greatly appreciated.
View 5 Replies
View Related
Dec 1, 2015
I have this query:
SELECT
         ID1,
         ID2,
          type,
         (case when type = '1' then sum(value) else '0' end) as Value1,
         (case when type = '3' then sum(value) else '0' end) as Value2,
          (case when type <> '1' and type <> '3' then sum(value) else '0' end) as Value3
FROM table1 WHEREÂ ID1 = 'x' and ID2= 'y'Â
GROUP BY ID1, ID2, Type
Which returns:
ID1    ID2       Type    Value1    Value2    Value3
005Â Â Â 11547Â Â Â 0Â Â Â Â Â Â Â Â Â 0.00Â Â Â Â Â Â Â Â 0.00Â Â Â Â Â Â Â 279.23
005Â Â Â 11547Â Â Â 1Â Â Â Â Â Â Â Â Â 15.23Â Â Â Â Â Â 0.00Â Â Â Â Â Â Â 0.00
005Â Â Â 11547Â Â Â 3Â Â Â Â Â Â Â Â Â 0.00Â Â Â Â Â Â Â Â 245.50Â Â Â Â 0.00
And I want to obtain this result:
ID1Â Â Â Â ID2Â Â Â Â Â Â Â Value1 Â Â Â Value2 Â Â Â Value3
005Â Â Â 11547Â Â Â Â 15.23Â Â Â Â Â Â 245.50Â Â Â Â 279.23
View 5 Replies
View Related
Jan 29, 2008
Can this be done in SSRS or must it be done in the query? Ideas? Suggestions? See Example Below:
Current table look:
1 Data.........
2 Data.........
3 Data.........
4 Data.........
5 Data.........
6 Data.........
7 Data.........
Etc...
The Way I need it to look
1 Data.........
2 Data.........
3 Data.........
4 Data.........
5 Data.........
6 Data.........
7 Data.........
Etc...
TIA (Thanks in Advance!)
View 4 Replies
View Related
Apr 2, 2008
Hi,
I am using simple line chart in sql server reporting services 2005.
I am showing 4 lines in my chart.I want to change that line colors.
Please help me for this.
Thanks
Shekar
View 7 Replies
View Related
Jul 12, 2007
Hello,
My line chart displays all lines in a single color (the series color). I'd like a single color per item in the series just like the bar chart. Is there a way to change this? Or is the only differentiation the markers?
Michael
View 7 Replies
View Related
Jan 27, 2007
am using a line chart to display series of results over time - data is got from and AnalysisServices cube.
problem is that sometimes there is no value for the result - and the chart doesnt display that as zero
e.g. with the following data
week 1 10 items
week 2 12 items
week 3 14 items
week 4 8 items
week 6 12 items
the chart will join the week 4 result of 8 items directly to the week 6 result of 12 items
is there anyway of changing this so the line goes from 8 items on week 4 to ZERO items on week 5 and then 12 items on week 6 ???
View 1 Replies
View Related
Feb 8, 2008
I would know if is possible to add the regression line to a scatter chart !!!
View 5 Replies
View Related
May 25, 2008
I have an average that changes based on the date ranges that the user selects, for some reason it always shows up at 0 value even though i tied the value directly to the textbox, ive tried just about every trick i know. Here is what it looks like.
I want the top level AHT the first chart should be 13.66 the second one should be 8.01.
I can enter a hard value but i need it to change based on what the user enters.
View 1 Replies
View Related
Apr 23, 2007
Good day,
Is there anyway that I can have a multi-line chart title? I have even tried placing a text box over the title part of the chart that is multi-line, although this appears to work once the report is deplyed and viewed in a web browser the text box appears below the chart and the chart then has no title.
Please can you help?
View 2 Replies
View Related
May 29, 2007
How is it possible to have the values on the chart x-axis to be shown vertically rather than horizantal?
Thanks
View 3 Replies
View Related
Aug 22, 2007
Hi,
Two questions both on Line charts:
Is it possible to give the marker of a line chart a different colour from that given to the line?
Is it possible to make only the line in the line chart invisible? My requirement is to keep only the markers.
Regards,
Emil
View 7 Replies
View Related
Mar 19, 2008
So I have created a chart in my report that counts the number of transactions by day. Each day in a month is a series. Now when I view the report, the series line is different color as expected until I hit the 17th, then the color associated with the line repeats. I.e. the 1st and the 17th are the same color line, the 2nd and the 18th are the same color...etc.
Does anyone know how to break the color limitation quandry?
Thanks.
View 10 Replies
View Related
Mar 13, 2012
I am trying to create a report using the below data:
Report_Date Base_Name
2010-12-15 00:00:00.000Main
2011-01-27 00:00:00.000Outer
2011-06-27 00:00:00.000Main
2011-06-28 00:00:00.000Main
2011-07-18 00:00:00.000Inner
2011-09-21 00:00:00.000Inner
2011-10-11 00:00:00.000Outer
2011-10-04 00:00:00.000Outer
2011-10-14 00:00:00.000Central
2012-01-18 00:00:00.000Inner
I want to create a line chart showing the bases, split by 6 month periods, on the X axis and a count on the Y. I have tried but am well and trult stuck!
View 4 Replies
View Related
Jun 9, 2015
Representing an elevation value in a line chart? or (Any chart)
The below are the sample values
GRID_ID StarPoint EndPoint Elevation
3 0 900 1220.1
3 900 1000 1219.5
3 1000 1100 1219.2
3 1100 1300 1220.1
4 0 100 1330.1
4 100 200 1328.1
4 200 300 1329.1
View 4 Replies
View Related
May 16, 2008
I have a report I'm writing and have got a problem that has stumped me.
The data the report is based in is in this format:
Date Type
1/1/08 A
1/3/08 B
3/1/08 C
3/5/08 B
3/10/08 A
3/12/08 C
3/20/08 A
Management wants a report showing a line chart that summarizes the data by Month and by Type. So, there are 2 series depending on the Type and data values are based on the count of each Type. So, in the example above the x-axis group would be month, the values would be count(Type) and there would be 2 series €“ Series 1. A, B and Series 2. C
I€™ve defined the x-axis to be Month(Fields!DateOccured.Value). However, they want the x-axis to show every month for the entire year not just what is in the database. So, I defined the x-axis to have a scale of 1 to 12 and the major interval is set to 1. This displays 1 through 12 on the x-axis.
The problem is when there is no data (null) for a particular month. Instead of showing 0, the line chart does not plot anything and the line is drawn to the next displayed point. So, for example on the data above the line chart would plot:
January
Series 1 €“ Qty. 2 Series 2 €“ Qty. 0
February
Null
March
Series 1 €“ Qty. 3 Series 2 €“ Qty. 2
The line chart would draw a line from January to March skipping February. I need to display the null values as 0 and not null indicating no occurrences for the month rather than no data present.
Thanks!
View 11 Replies
View Related
Feb 4, 2008
Hi,
I am having a report which contains a line chart. I have tried different alternatives, but i could not get it solved.
For example:
Line Chart with
x-axis : month(1,2,....,12)
y-axis : sales amount.
series group : city (DimGeography.City) filtered by (DimGeography.StateProvinceName = "London")
I am getting different lines for different cities of London. That's working fine. But the requirement is i need to display one more line in the same line chart depicting/showing the sales for the "London" state as well.
Please help me if anyone can.
Thanks in advance.
View 1 Replies
View Related
Nov 12, 2015
Is there a possibility in SSRS to have  One stacked bar of cumulative sum of different ID's and and Line Chart at left hand of the Bar which will show the Progress as soon as the ID turn to Competed status.
I have been trying to do this , however there is huge problem of scaling:
The line should be finished at all the completed ID's SUM which is the lowest stack of the Bar.
However , the bar gets stretched to all of the space.
I have tried to place it into Tab lix, But it doesn't work.
View 3 Replies
View Related
Dec 13, 2007
I can't figure out how to get my line chart to break when there isn't a value. For example, I have a trend line over 4 time periods. The 3rd time period is missing a value. Instead of the line ending at the 2nd period and picking up again at the 4th time period, it's connecting the line 2nd to the 4th period. I'd like it to break and for there to be no line appearing in the 3rd period. I bet that's as clear as mud, but let me know if you have any questions.
Thanks!
sash
View 1 Replies
View Related
Oct 24, 2014
I have a table in the report. One of the columns is the result of a variable. It is the maximum value of a field that is grouped.I need to chart the maximum values and use a different group for the values.
For example:
In the data set is the following information:
Furnace # Heat # Frame Avg Window Avg
then the table has the following:
Heat # Max Frame Avg Max Window Avg
I need to graph the Max Frame Avg and the Max Window Avg on separate graphs.
View 0 Replies
View Related
May 3, 2007
Hi, all here,
Why the lift chart for my mining models evaluation does not have a random guess model line there? As normal, there should be lines like trained models, ideal model, and random guess model? Why is that? What did I miss? Could any experts here shed me any light on that.
Thanks a lot in advance for your advices and help and I am looking forward to hearing from you shortly.
With best regards,
Yours sincerely,
View 5 Replies
View Related
Oct 20, 2015
I have the below chart.
In this, I need to add line charts for the three years specifying the running total. I already have bar charts for the respective years. This is the query that I used to get the dataset.
SELECT [Parent Name], [ID], [Year], [Month], SUM([Value]) AS 'Running Total'
FROM Regulus_Data_Backup
GROUP BY [Parent Name], [ID], [Year], [Month]
order by [Parent Name],[ID], [Year], DATEPART(mm,CAST([Month]+ Convert(varchar(4),[Year]) AS DATETIME))
Then I added a series with a expression that had the chart type as line as shown below.
My Expression was
=RunningValue(Fields!Running_Total.Value,SUM,"MonthWiseData")
My 3 parameter was "MonthWiseData" which is my dataset name. Is this correct? I use the same dataset to get the bar charts too. I get a error message now when loading the report saying "the scope parameter must be set to a string constant.
My goal is to get bar values for 3 years for the 12 months and in the same chart get the cumulative numbers for the 3 years for the 12 months. How can I do this?
View 14 Replies
View Related
May 1, 2006
I am developing several charts with column type and sub type as stacked. There is a requirement from the users that they want an option to choose the type of chart.
Is it possible to change chart type dynamically from say Column type to Line type based on user option in front-end?
Any help will be appreciated.
Thanks in advance !!
View 5 Replies
View Related
May 29, 2015
I have this issues with empty points in a Line Chart. How to make it work with dynamic values in the series and some dates in the category, how to join the "data" values for a "series"where there are no category value. So far I cannot see any fix that would make it work by joining the data points with the "average" data on a empty point (no category value) and with the same color on the line.
View 2 Replies
View Related
Sep 21, 2015
I have a stacked bar chart which i notice a vertical line char. how can i removed this vertical line? I already modified the properties under smart labels under calloutlineanchor, calloutlinestyle, calloutstyle to None but still getting this vertical lines. another things is the data label as you can see in the the first column the 1.8% should be place under the gray color but its already shown before the orange color.
View 3 Replies
View Related