Chart Colors In Reporting Services
May 21, 2007
Hi all,
Hopefully someone can clarify for me. I'd like to use custom colors for a chart that I have created. I've seen some code examples but I'm not really sure what to do with them. I've been using reporting services for like 2 days and I don't know xml or vb script, so I apologize for the probably stupid question. Thank you in advance.
-Keith
View 3 Replies
ADVERTISEMENT
May 3, 2007
I have created a linked report in which I have two screen:
First Screen: Clicking on the bar of particular country the details of that particular country should be visible (the second screen)
Second Screen: When I clicked on a bar. All the count values are very well correct. In first chart Count of values under one bar "Pending decision"(yellow) was 337 for a country and in second screen its 337 again(shown in light green bar).
<!--[if !vml]--><!--[endif]-->
Problem: My problem is to make it sure that the colors that the first screen is having for particular status (as shown in the legend) should remain same in second screen also. For example for a status say "pending decision" the chart is using yellow color, so in screen two as well it must be shown with yellow color and not with lany other color. Can anyone help me in this context. Is there any way to customize colors used by bar chart. Please note that the question is not about using appropriate color scheme(palette) the question is how to "capture/ Re-use/ customize/ pass as a parameter" the colors used by a bar chart in SQL Server 2005 Reporting Services.
View 1 Replies
View Related
Sep 8, 2015
I have a column bar chart which displays values for each month. As per the requirement, January column must be blue, February must be orange, March must be green, April must be pink. These 4 colors would repeat for the remaining months.
View 5 Replies
View Related
May 7, 2015
I have a report in which I have assigned custom colors with a function to one of my stacked column charts. When I run it in the report builder, the colors are correctly placed, but as soon as I upload the report to the server and view the report from there, the colors get swapped. I have these custom colors applied to other stacked column charts in the report and they work perfectly fine. The only difference between this chart and my other charts is that it contains two category groups.
EDIT: Alright, I have gotten it to display the correct colors by using a function with the colors I wanted in reverse. I have two values, "Upcoming" which is displayed in red, and "Outstanding" which is displayed in blue. If the chart has only upcoming values, it will display in blue rather than red, whereas if I have upcoming and outstanding values, they will display in their correct colors. why this is occurring?
View 2 Replies
View Related
Jun 24, 2015
I have been asked to derive a bar charts in SSRS. Each bar would represents a different category and each bar should come with different colors. No. of categories might vary every time, it is not fixed. How to achieve this dynamically?
View 2 Replies
View Related
May 30, 2007
I need some help regarding Custom Colors implementation for Charts in the Reporting Services.
What we are trying to do is to make every color for every Series(see example below) to be a customized Corporate color.
For example each of the series on the Chart should be in specific Custom Color:
Series 1 - "LightBlue"
Series 2 - "LightYellow"
Series 3 - "DarkBrown"
All I found from MSDN is how to do it in the Chart Properties in a Code section (right click on the report outside the chart -> Properties -> Code tab -> paste the Custom Code ).
And then to use it in the Chart color definition as:
Code Snippet=Code.GetColor( Series# )
But we are trying to do it in a separate C# class that would be updated only in one place, instead of changing 30 reports each time something is changed. So that it could be generic.
The C# class:
Code Snippet
namespace CustomColorPalette
{
public class CustomPalette
{
public CustomPalette()
{
}
public static string GetColor(string GroupingValue)
{
int groupingValue = int.Parse(GroupingValue);
string[] colorPalette = {"Green", "Blue", "Red"};
if (groupingValue < colorPalette.Length)
{
return colorPalette.GetValue(groupingValue).ToString();
}
else
{
return "Black"; // if # of Series is more than defined - all undefined will be = Black color
}
}
}
}
I tried 2 different ways:
1.
Then I put a code into a Custom Code section of a report:
Code Snippet
Public Function GetColor(SeriesNumber as String)
Return CustomColorPalette.CustomPalette.GetColor(SeriesNumber)
End Function
And in the Chart Custom Color settings I put:
Code Snippet=Code.GetColor( Fields!SeriesNumber.Value )
And after compilation I get an error:
Error 303 [rsCompilerErrorInCode] There is an error on line 2 of custom code: [BC30451] Name 'CustomColorPalette' is not declared. c:developmentvoyagerreportsvoyager convert reports.rootvoyager convert reportsReport_007D.rdl 0 0
2.
Second way I tried:
Then I put a code into a Custom Code section of a report:
Code Snippet
Dim X As CustomColorPalette.CustomPalette
Protected Overrides Sub OnInit()
X = new CustomColorPalette.CustomPalette()
End Sub
And in the Chart Custom Color I put:
Code Snippet=Code.X.GetColor( Fields!SeriesNumber.Value )
And after compilation I am getting an error like this:
Error 302 [rsCompilerErrorInExpression] The BackgroundColor expression for the chart €˜chart2€™ contains an error: [BC30456] 'X' is not a member of 'ReportExprHostImpl.CustomCodeProxy'. c:developmentvoyagerreportsvoyager convert reports.rootvoyager convert reportsReport_007D.rdl 0 0
Is there any workaround? Or all I can do is to make the Custom Colors manually in each report, and if something need to be changed - I will need to change it in each report separately
Thanks,
Alex
View 5 Replies
View Related
Mar 26, 2007
Hello All,
I have a reporting services report in the form of a chart. I have two datafields on the chart.
I need to be able to dynamically hide one datafield and view the chart for the other one and vice versa.
How do I do this ?
Any help would be appreciated..
Thanks!
View 4 Replies
View Related
Jul 17, 2014
When I export the report in excel format the chart is displayed as picture. I want it to be displayed as editable chart.Does Office Writer work in this situation and did anyone use Office Writer to accomplish same type of problem.Is there any other method or product we can use instead of the office writer.
View 2 Replies
View Related
Feb 13, 2012
I have a report designed in SSRS 2008 R2.My issue is that the data labels do not stay outside the bars for high values.
View 4 Replies
View Related
Jan 20, 2011
I have a Matrix with dynamic columns. I am grouping Matrix on one column group. I am trying to have a different color for every group. I hvae so far, three groups. How can I do that? A note, there is no data for every column group in every row.
View 7 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
Jul 21, 2015
I am facing some issue in rendering my SSRS report(2012 version) to excel sheet with color codes. i am using conditional formatting to display the colors. So what is happening is ,take the below expression as an example, for the id  = 0, we are not getting white back ground, we are getting some other colors. But the same thing is working fine in SSRS 2008R2.Â
=IIF(MAX(Fields!id.Value=0,
= 0, "WHITE","BLUE")
View 4 Replies
View Related
May 4, 2005
Hi All,
I like RS for SQL server.
However, I am surprised (and frustrated) how limited the chart capabilities are; perhaps we have been spoiled by Excel...
Anyway, is there any way to change the color of the chart bars programatically.
I can select different schemas (excel, pastel, grayscale, etc) but I need to go a little bit further, is that much to ask?
Oh, by the way, we can't mix chart styles, can't we?
Need to show a chart and a line in the same report...
I appreciate your help on this, hopefully any answers to my questions might also help with other RS users with the same needs,
Thanks,
L
View 7 Replies
View Related
Feb 12, 2013
We mark cells in  a report using color names like red, pink, and transparent in the fill expression. In the browser it works correctly. When exported to Excel the colors go to the wrong cells. This worked correctly in SSRS 2008.Â
View 9 Replies
View Related
Jul 30, 2015
I have 3 SSRS 2014 (Dev, UAT and Prod). I would like to change background colors of each environment and customize the title 'SQL Server Reporting Services' to ' SSRS Development'.
I prefer to implement both, a background color change and a title change. The reason for this is to clarify to end users which environment they are working with.
Where can I make those minimal changes in SSRS 2014.
View 2 Replies
View Related
Sep 11, 2007
I have a chart that presently has two groupings on the x-axis: Year & Qtr. I'd like the Year labels to be one color, and the Qtr labels to be a different color. (All year labels should be Black, all Qtr labels should be Blue). I can see that an expression can be written to handle this dynamically, but I'm banging my head trying to figure it out...
Any help?
Thanks in advance,
Pete
View 1 Replies
View Related
Feb 5, 2007
hey all
I am using RS 2005
I have a report with chart
parameters = value1, value2, value3, all
How can I make the chart only show when all is selected?
cheers
jewel
View 5 Replies
View Related
Mar 10, 2008
I am trying to display a chart from a data source that runs a stored procedure. The data dislays fine in the dataset tab, however, when I try to preview the report I get the following message:
'An error occurred during local report processing. The definition of the report 'reportname' is invalid. An internal error occured on the report server. See the error log for more details'.
I have looked at the error logs, but they do not help. I am thinking that my stored procedure is pushing a limit of the chart report. If I display the same data in a table, it displays fine, it is only in a chart. As I stated, the data is displaying in the dataset grid.
Can anyone give me an idea as to what my problem might be? I have other charts that run fine, but not using a stored procedure like the one below where I am performing multiple selects.
Below is the stored procedure:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author: Tim Olig
-- Create date: 09/20/07
-- Description: Returns Total Stored Procedure
-- =============================================
ALTER PROCEDURE [dbo].[sp_db_ReturnsSummary]
@Date smalldatetime
AS
BEGIN
SET NOCOUNT ON;
Select rtsum.FiscalYear,rtsum.Period,
rtsum.RMAComplete_ALL,
rtsum.RMAComplete_ANO,
rtsum.RMAComplete_EXT,
rtsum.RMAComplete_FAB,
rtsum.RMAComplete_SUN,
rtsum.RMAComplete_SUP,
salessum.ShipRev
from
(SELECT
CASE WHEN datepart(YY,returns.invdate) = 1900 then 2008 else datepart(YY,Returns.Invdate) end as FiscalYear,
CASE WHEN datepart(YY,returns.invdate) = 1900 then 'PENDING'
WHEN len(datepart(mm, returns.invdate)) = 1 THEN 'P0' + ltrim(str(datepart(mm, returns.invdate)))
WHEN len(datepart(mm, returns.invdate)) = 2 THEN 'P' + ltrim(str(datepart(mm, returns.invdate))) END AS Period,
"RMAComplete_ALL" = sum(returns.TotalCredit),
"RMAComplete_ANO" = sum(case when returns.respdept = 'ANODIZING DEPT' then (returns.TotalCredit) else 0 end),
"RMAComplete_EXT" = sum(case when returns.respdept = 'EXTRUSION DEPT' then (returns.TotalCredit)else 0 end),
"RMAComplete_FAB" = sum(case when returns.respdept = 'FAB' then (returns.TotalCredit) else 0 end),
"RMAComplete_SUN" = sum(case when returns.respdept = 'SUNROOF' then (returns.TotalCredit) else 0 end),
"RMAComplete_SUP" = sum(case when returns.respdept = 'SUPPLIER' then (returns.TotalCredit) else 0 end)
FROM [returns]
WHERE invfiscalyear = 1990 or returns.invdate >= @Date
group by datepart(YY,Returns.Invdate), CASE WHEN datepart(YY,returns.invdate) = 1900 then 'PENDING' WHEN len(datepart(mm, Returns.invdate)) = 1 THEN 'P0' + ltrim(str(datepart(mm, Returns.invdate))) WHEN len(datepart(mm, Returns.invdate)) = 2 THEN 'P' + ltrim(str(datepart(mm, Returns.invdate))) END)
as rtsum
left outer join
(select
datepart(YY,transdate) as FiscalYear,
CASE WHEN len(datepart(mm,transdate)) = 1 THEN 'P0' + ltrim(str(datepart(mm,transdate)))
WHEN len(datepart(mm,transdate)) = 2 THEN 'P' + ltrim(str(datepart(mm,transdate))) END AS Period,
"ShipRev" = sum(case when (OrderType = 'Invoiced' or OrderType = 'ToBeInvoiced') and SalesAcctDesc = 'Sales' then Revenue else 0 end)
FROM sforep where transdate >= @Date
group by datepart(YY,transdate), CASE WHEN len(datepart(mm,transdate)) = 1 THEN 'P0' + ltrim(str(datepart(mm, transdate))) WHEN len(datepart(mm, transdate)) = 2 THEN 'P' + ltrim(str(datepart(mm, transdate))) END)
as salessum
on rtsum.fiscalyear = salessum.fiscalyear and rtsum.period = salessum.period
END
Thanks,
Tim Olig
View 2 Replies
View Related
Jun 1, 2007
We are working with scatter chart in reporting services.we need to divide the chart into quadrants.We can use VB code in reporting services.Can anyone let me know the VB code to divide that into quadrants and coloring the quadrants
Thanks in advance
Subha
View 3 Replies
View Related
Jun 14, 2006
Hi all--I'm looking at SQL Server 2005 Reporting Services as a possible reporting solution for our data warehouse. One of our reporting requirements is the ability to do Gantt charts--has anyone out there had any experiences with creating one with Visual Studio 2005?
Thanks in advance!
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
Jul 3, 2015
Is it possible to have the value labels always on top of the bars of a bar chart?Â
On the Chart Series Labels properties under Appearance, I used Top for Position, but if the bar reaches the top of the chart area (and that is determined automaticaly by the Y Axis that and can't be a fixed value).
View 5 Replies
View Related
Sep 1, 2009
We are having trouble finding a lot of documentation around configuring the Funnel chart. Specifcally, we would like to know if there's an option to be able to place the lengend title on the actual Funnel layer. Also, we would like to be able to control the order of the funnel layers to match a business process order from top to bottom. It would appear that the Funnel defaults to aphabetical ordering of the layers. Any good reference for the options available?
View 4 Replies
View Related
Sep 1, 2015
I have a Pie Chart report that works well until Users discovered that when values are 0% or less across the chart, the Legend returns NaN. How do I format the Legend to return 0% instead of the NaN that Users do not want to see. Below is my express for the Legend Property="#AXISLABEL" & " - " & "#PERCENT{P0}".
View 5 Replies
View Related
Jun 10, 2015
Parent Name ID Soft Hard Primary VTM
XYZ 2 50 10 40 100
rtm 3 20 20 60 500
RMM 4 40 20 40 300
I have the above output. When I try to input this as a dataset to a pie chart I don't get the data lables for two slices of the pie chart. Only one slice will show the values when showing data label option is enabled.
For the Pie chart, I have added Soft, Hard and Primary as Values. I haven't added a Category group or a Series group. Why isn't this showing the data labels for the other slices?
Do I need to transform the dataset so that it has a category and the value like below?
XYZ,  2, Soft 50
XYZ ,  2, Hard, 10
XYZ,  2, Primary, 40
Will this work since it has a define category that I could insert for the chart.
View 7 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
Jul 23, 2015
I have a requirement associated with SSRS bar chart.
Data in my DB is like shown below:
A
B
C
Opt1
Data1
10
Data2
20
Opt2
Data1
30
Data2
40
Opt3
Data3
50
Now I would like to build up a bat chart which should have:
Legends:Â Opt1, Opt2, and Opt3
Categories:Â
Data1(showing bars with scores as 10 and 30),
Data2 (showing bars with score 20 and 40),Â
Data3 (showing bar with scores 50 only)
View 3 Replies
View Related
Jul 23, 2015
I'm using Reporting Services 2008 R2, version 10.50.2550.0, and Visual Studio 2008, version 9.0.30729.4462 QFE. Not sure if the SQL version matters, since I haven't gotten the report out of the development environment.I've read lots of messages, including URL.... that show you can have multiple data entries per row in a Range Bar Chart, simply by turning DrawSideBySide to False.My data set basically contains four pieces of data, LineNumber, Equipment, StartTime and EndTime. I have data like:
1, 'CLM1', 08:00, 08:30
1, 'CLM1', 09:00, 09:15
2, 'SS1', 08:05, 08:35
2, 'SS1', 09:05, 09:35
(I actually have a date with my datetime entries, but that should give you the idea.) My chart is set up with Values of EndTime and StartTime. If I set my chart up with only Equipment in the Category Groups entry, my chart will show CLM1 from 08:00-08:30, and SS1 from 08:05 to 08:35. No sign of the other entries per equipment, although I added a tablix to retrieve the same data and it all shows up.Changing DrawSideBySide between True, False and Auto has no effect on the data displayed on my chart. If I add StartTime in the Category Groups, I do show all the data, but one row for each piece of data, which isn't what the customer wants.From what I can tell from various sites, I'm set up right, but it just isn't working.
View 2 Replies
View Related
Sep 3, 2015
I have a table that contains some data.Â
LabelName
LabelValue
TotalForRetire
10337
dummy1
0
TotalForRelatives
5850
dummy2
0
TotalForDisability
7337
TotalForOrange
23
I have a pie chart and a bar chart.
In the pie chart I want to plot only TotalForRetire and TotalForDisability and TotalForOrange
In the bar chart I want to plot only TotalForRetire,dummy1,TotalForRelatives.
Also, here I want the horizontal axis not to show the label  for dummy1 as the value is 0. How can i do that for each chart?
View 2 Replies
View Related
Jul 16, 2015
I need to create area chart using SSAS cube which will be having :
sum(A) as per the Series group i.e Projects (expression used is Sum(Fields!Demand_FTE.Value))
Sum(B) as per the CategoryGroup1Â =Sum(Fields!Demand_FTE.Value,"CategoryGroup1") where categoryGroup1 is calculated date
And Sum(C)Â =Â sum(Lookup(Fields!Time_FY.Value,Fields!Time_FY.Value,Fields!Capacity_FTE.Value, "DataSet2")).
I want Sum(C) to be calculated on Fields!Time_FY.Value (which is  CategoryGroup2)
Sum(C) do not have any links with CategoryGroup1 and that is why my graph is synchronized.
Sum(A and B) belongs to Dataset1 and SUM(C) belongs to Dataset2
View 2 Replies
View Related
May 8, 2015
I am designing a bar chart in which five value comes .if all values comes then graph is working fine but my concern is when i have single value then in that case bar gets created on the middle of chart i want to generate the single bar on bottom of the chart.
View 5 Replies
View Related
Oct 12, 2015
I have pie chart. In this i have to display the category group name , count as a data label. In this both category name and count should be in seperate line and should be in centre allignment. But for it is not centre allignment. In series label properties i am using this expression,=Fields!Group.Value & VbCrLf & Count(Fields!Countvalue.Value).I am geeting new line. But not in center allignment.
View 2 Replies
View Related
Nov 18, 2015
In my Chart I have to keep the angel of the category field fix to 90 degree. When I do this the format of the Label does not look quite right.
I expect Below : I can work Out dd and mm positions ..what I am concerned about the date direction because of which its not quite readable.

I have tried many format in label format but it is not giving expected result.
View 2 Replies
View Related