SSRS line chart showing premium change pct over time

Hi,
I have an SSRS report sitting over a cube.  I'm building a Line chart to show premium change over time by producer (there are currently 6 producers).  I have the Producer Name, Quarter/Year, and Premium amt.
I want to have the premium line trend based on the percentage of change from Quarter to Quarter.  Quarter will be the X-Axis and percentage will be the Y axis.   The premium for the first quarter should start at 100%.  Each premium line for
the producer should then change up or down based on the change in premium per quarter.  The end result should look something like this:  Can this be done using SSRS?

Hi,
I have an SSRS report sitting over a cube.  I'm building a Line chart to show premium change over time by producer (there are currently 6 producers).  I have the Producer Name, Quarter/Year, and Premium amt.
I want to have the premium line trend based on the percentage of change from Quarter to Quarter.  Quarter will be the X-Axis and percentage will be the Y axis.   The premium for the first quarter should start at 100%.  Each premium line for
the producer should then change up or down based on the change in premium per quarter.  The end result should look something like this:  Can this be done using SSRS?

Similar Messages

  • Show Timestamp on Y axis in a SSRS line chart.

     I have a column with datatype as timestamp. And i want to show that column on Y axis in a line chart. two sample values from that column are 03/01/2014 11:30 PM and 03/02/2014 12:10 AM. In this case the data point for first value should be less compare
    to the second one, i.e. the series should consider the complete timestamp. Is there a way in SSRS to achieve it.
    If I only take the time value from timestamp on Y axis and plot the chart then the data point for 12:10 AM is less than the 11:30 PM, which is not true in this case.
    ApoorvaW

    Hi ApoorvaW,
    In Reporting Services, if we directly add the Timestamp field to Y Axis, it displays the count values in the line chart. When we modify the expression of the value to [Timestamp], it displays the date value in the Y Axis. Though it displays date type as
    the axis label, it represent the complete timestamp.
    So in my environment, the timestamp display very well in the line chart. If there are any misunderstanding, please elaborate the issue for further investigation.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Diagonal line on SSRS line chart

    Hi all,
    I'm struggling with a charting issue that I was hoping someone here might be able to help with - I've looked through various blogs without success. I need to insert a diagonal line running the full width of a line chart, representing the linearly increasing
    target value over a month. The actual data will then be a secondary series on the same vertical axis, showing progress against the target based on today's data.
    This report has several limitations that I should emphasise before someone says "Well, why can't you just generate the target data in the SQL query?". It's for Dynamics CRM Online, so the only type of data source and query allowed is FetchXML.
    I can't even use a simple SQL query that returns constant values, let alone an actual SQL DB query. It also doesn't seem to be possible to have any custom code in the report, which makes it even more frustrating. FetchXML is just not set up to do things like
    return constant values in a query, or return a dataset which is the set of days in the current month.
    What I do have is two datasets, one of which returns the actual data, which I've used as the first series in the table, and a second dataset that returns a single value that represents the target for the month. There's no way, as far as I'm aware, to cross-join
    that with a set of dates and then use a calculated field in the dataset to turn it into a linear series.
    I've set the min and max values of the X-axis to show me all dates, and my initial solution to the problem was to have a horizontal line at the target value, as shown below (red dotted line). However, I've been asked to change that to the solid red diagonal
    line as shown:
    Series 1 (Total order value) is the RunningValue of the daily order values, summed across the dates. 
    Series 1 data looks something like this:
    [Date] [Order Value]
    1 Mar 100
    3 Mar 20
    3 Mar 35
    24 Mar 400
    Series 2 data just has
    [Target Name] [Target Value]
    Sales Target 25000
    Does anyone have ideas on how I can do this? I'm happy to take any suggestions; the line doesn't have to be interactive or be an action, so it could even be rendered directly onto the chart, if that's possible. The only limitation is that it needs to be
    viewed on screen, and be printable. I'd prefer some sort of elegant approach that allows me to do it as two series on the same chart, but frankly at this point I'm beyond caring how it's done - so long as it works, it can be held together with chewing gum
    and string.

    Hi Anuruddha,
    When you want to see the diagonal line, you should divide the target value with number of values in x-axis,
    let say Month March  has 31 days, your target is 25000
    then 25000/31=806.4516129032258
    But to do dynamic you need to get the number of days in month
    =day(DateAdd("d",-1,DateAdd("M",1,cdate(cstr(Month(First(Fields!workday.Value, "DataSet3")) )+"/01/" + cstr(Year(First(Fields!workday.Value, "DataSet3")))))))
    Create another series like below shown:-
    a Above expression  :-
    = (Sum(Fields!target.Value, "DataSet2")/ (day(DateAdd("d",-1,DateAdd("M",1,cdate(cstr(Month(First(Fields!workday.Value, "DataSet3")) )+"/01/" + cstr(Year(First(Fields!workday.Value, "DataSet3")))))))))*Fields!id.Value
    Run the report:-
    Orange Line is yours previously, Red Line is what you want.
    I am doing calculation in series, so there is no problem for you as you can't write SQL query.
    Below is the RDL code , which will help you to check the expressions.
    <?xml version="1.0" encoding="utf-8"?>
    <Report xmlns="http://schemas.microsoft.com/sqlserver/reporting/2008/01/reportdefinition" xmlns:rd="http://schemas.microsoft.com/SQLServer/reporting/reportdesigner">
    <Body>
    <ReportItems>
    <Textbox Name="textbox1">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>Sparkline</Value>
    <Style>
    <FontFamily>Tahoma</FontFamily>
    <FontSize>12pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <Color>SteelBlue</Color>
    </Style>
    </TextRun>
    </TextRuns>
    <Style>
    <TextAlign>Center</TextAlign>
    </Style>
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>textbox1</rd:DefaultName>
    <Height>0.37in</Height>
    <Width>5in</Width>
    <Style>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    <Chart Name="Chart1">
    <ChartCategoryHierarchy>
    <ChartMembers>
    <ChartMember>
    <Group Name="Chart1_CategoryGroup">
    <GroupExpressions>
    <GroupExpression>=Fields!workday.Value</GroupExpression>
    </GroupExpressions>
    </Group>
    <SortExpressions>
    <SortExpression>
    <Value>=Fields!workday.Value</Value>
    </SortExpression>
    </SortExpressions>
    <Label>=Fields!workday.Value</Label>
    </ChartMember>
    </ChartMembers>
    </ChartCategoryHierarchy>
    <ChartSeriesHierarchy>
    <ChartMembers>
    <ChartMember>
    <Label>value</Label>
    </ChartMember>
    <ChartMember>
    <Label>target</Label>
    </ChartMember>
    <ChartMember>
    <Label>id</Label>
    </ChartMember>
    </ChartMembers>
    </ChartSeriesHierarchy>
    <ChartData>
    <ChartSeriesCollection>
    <ChartSeries Name="value">
    <ChartDataPoints>
    <ChartDataPoint>
    <ChartDataPointValues>
    <Y>=RunningValue(Fields!value.Value,Sum,"DataSet3")</Y>
    </ChartDataPointValues>
    <ChartDataLabel>
    <Style />
    </ChartDataLabel>
    <Style />
    <ChartMarker>
    <Style />
    </ChartMarker>
    <DataElementOutput>Output</DataElementOutput>
    </ChartDataPoint>
    </ChartDataPoints>
    <Type>Line</Type>
    <Style />
    <ChartEmptyPoints>
    <Style />
    <ChartMarker>
    <Style />
    </ChartMarker>
    <ChartDataLabel>
    <Style />
    </ChartDataLabel>
    </ChartEmptyPoints>
    <ValueAxisName>Primary</ValueAxisName>
    <CategoryAxisName>Primary</CategoryAxisName>
    <ChartSmartLabel>
    <CalloutLineColor>Black</CalloutLineColor>
    <MinMovingDistance>0pt</MinMovingDistance>
    </ChartSmartLabel>
    </ChartSeries>
    <ChartSeries Name="IDDetails">
    <ChartDataPoints>
    <ChartDataPoint>
    <ChartDataPointValues>
    <Y>=Sum(Fields!target.Value, "DataSet2")</Y>
    </ChartDataPointValues>
    <ChartDataLabel>
    <Style />
    </ChartDataLabel>
    <Style />
    <ChartMarker>
    <Style />
    </ChartMarker>
    <DataElementOutput>Output</DataElementOutput>
    </ChartDataPoint>
    </ChartDataPoints>
    <Type>Line</Type>
    <Style />
    <ChartEmptyPoints>
    <Style />
    <ChartMarker>
    <Style />
    </ChartMarker>
    <ChartDataLabel>
    <Style />
    </ChartDataLabel>
    </ChartEmptyPoints>
    <ValueAxisName>Primary</ValueAxisName>
    <CategoryAxisName>Primary</CategoryAxisName>
    <ChartSmartLabel>
    <CalloutLineColor>Black</CalloutLineColor>
    <MinMovingDistance>0pt</MinMovingDistance>
    </ChartSmartLabel>
    </ChartSeries>
    <ChartSeries Name="Series">
    <ChartDataPoints>
    <ChartDataPoint>
    <ChartDataPointValues>
    <Y>= (Sum(Fields!target.Value, "DataSet2")/ (day(DateAdd("d",-1,DateAdd("M",1,cdate(cstr(Month(First(Fields!workday.Value, "DataSet3")) )+"/01/" + cstr(Year(First(Fields!workday.Value, "DataSet3")))))))))*Fields!id.Value</Y>
    </ChartDataPointValues>
    <ChartDataLabel>
    <Style />
    </ChartDataLabel>
    <Style />
    <ChartMarker>
    <Style />
    </ChartMarker>
    <DataElementOutput>Output</DataElementOutput>
    </ChartDataPoint>
    </ChartDataPoints>
    <Type>Line</Type>
    <Style />
    <ChartEmptyPoints>
    <Style />
    <ChartMarker>
    <Style />
    </ChartMarker>
    <ChartDataLabel>
    <Style />
    </ChartDataLabel>
    </ChartEmptyPoints>
    <ValueAxisName>Primary</ValueAxisName>
    <CategoryAxisName>Primary</CategoryAxisName>
    <ChartSmartLabel>
    <CalloutLineColor>Black</CalloutLineColor>
    <MinMovingDistance>0pt</MinMovingDistance>
    </ChartSmartLabel>
    </ChartSeries>
    </ChartSeriesCollection>
    </ChartData>
    <ChartAreas>
    <ChartArea Name="Default">
    <ChartCategoryAxes>
    <ChartAxis Name="Primary">
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    <ChartAxisTitle>
    <Caption>Axis Title</Caption>
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    </ChartAxisTitle>
    <ChartMajorGridLines>
    <Enabled>False</Enabled>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    </Border>
    </Style>
    </ChartMajorGridLines>
    <ChartMinorGridLines>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    <Style>Dotted</Style>
    </Border>
    </Style>
    </ChartMinorGridLines>
    <ChartMinorTickMarks>
    <Length>0.5</Length>
    </ChartMinorTickMarks>
    <CrossAt>NaN</CrossAt>
    <Minimum>NaN</Minimum>
    <Maximum>NaN</Maximum>
    <ChartAxisScaleBreak>
    <Style />
    </ChartAxisScaleBreak>
    </ChartAxis>
    <ChartAxis Name="Secondary">
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    <ChartAxisTitle>
    <Caption>Axis Title</Caption>
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    </ChartAxisTitle>
    <ChartMajorGridLines>
    <Enabled>False</Enabled>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    </Border>
    </Style>
    </ChartMajorGridLines>
    <ChartMinorGridLines>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    <Style>Dotted</Style>
    </Border>
    </Style>
    </ChartMinorGridLines>
    <ChartMinorTickMarks>
    <Length>0.5</Length>
    </ChartMinorTickMarks>
    <CrossAt>NaN</CrossAt>
    <Location>Opposite</Location>
    <Minimum>NaN</Minimum>
    <Maximum>NaN</Maximum>
    <ChartAxisScaleBreak>
    <Style />
    </ChartAxisScaleBreak>
    </ChartAxis>
    </ChartCategoryAxes>
    <ChartValueAxes>
    <ChartAxis Name="Primary">
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    <ChartAxisTitle>
    <Caption>Axis Title</Caption>
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    </ChartAxisTitle>
    <ChartMajorGridLines>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    </Border>
    </Style>
    </ChartMajorGridLines>
    <ChartMinorGridLines>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    <Style>Dotted</Style>
    </Border>
    </Style>
    </ChartMinorGridLines>
    <ChartMinorTickMarks>
    <Length>0.5</Length>
    </ChartMinorTickMarks>
    <CrossAt>NaN</CrossAt>
    <Minimum>NaN</Minimum>
    <Maximum>NaN</Maximum>
    <ChartAxisScaleBreak>
    <Style />
    </ChartAxisScaleBreak>
    </ChartAxis>
    <ChartAxis Name="Secondary">
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    <ChartAxisTitle>
    <Caption>Axis Title</Caption>
    <Style>
    <FontSize>8pt</FontSize>
    </Style>
    </ChartAxisTitle>
    <ChartMajorGridLines>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    </Border>
    </Style>
    </ChartMajorGridLines>
    <ChartMinorGridLines>
    <Style>
    <Border>
    <Color>Gainsboro</Color>
    <Style>Dotted</Style>
    </Border>
    </Style>
    </ChartMinorGridLines>
    <ChartMinorTickMarks>
    <Length>0.5</Length>
    </ChartMinorTickMarks>
    <CrossAt>NaN</CrossAt>
    <Location>Opposite</Location>
    <Minimum>NaN</Minimum>
    <Maximum>NaN</Maximum>
    <ChartAxisScaleBreak>
    <Style />
    </ChartAxisScaleBreak>
    </ChartAxis>
    </ChartValueAxes>
    <Style>
    <BackgroundGradientType>None</BackgroundGradientType>
    </Style>
    </ChartArea>
    </ChartAreas>
    <ChartLegends>
    <ChartLegend Name="Default">
    <Style>
    <BackgroundGradientType>None</BackgroundGradientType>
    <FontSize>8pt</FontSize>
    </Style>
    <ChartLegendTitle>
    <Caption />
    <Style>
    <FontSize>8pt</FontSize>
    <FontWeight>Bold</FontWeight>
    <TextAlign>Center</TextAlign>
    </Style>
    </ChartLegendTitle>
    <HeaderSeparatorColor>Black</HeaderSeparatorColor>
    <ColumnSeparatorColor>Black</ColumnSeparatorColor>
    </ChartLegend>
    </ChartLegends>
    <ChartTitles>
    <ChartTitle Name="Default">
    <Caption>Chart Title</Caption>
    <Style>
    <BackgroundGradientType>None</BackgroundGradientType>
    <FontWeight>Bold</FontWeight>
    <TextAlign>General</TextAlign>
    <VerticalAlign>Top</VerticalAlign>
    </Style>
    </ChartTitle>
    </ChartTitles>
    <Palette>BrightPastel</Palette>
    <ChartBorderSkin>
    <Style>
    <BackgroundColor>Gray</BackgroundColor>
    <BackgroundGradientType>None</BackgroundGradientType>
    <Color>White</Color>
    </Style>
    </ChartBorderSkin>
    <ChartNoDataMessage Name="NoDataMessage">
    <Caption>No Data Available</Caption>
    <Style>
    <BackgroundGradientType>None</BackgroundGradientType>
    <TextAlign>General</TextAlign>
    <VerticalAlign>Top</VerticalAlign>
    </Style>
    </ChartNoDataMessage>
    <DataSetName>DataSet3</DataSetName>
    <Top>0.59667in</Top>
    <Left>0.24667in</Left>
    <Height>3.55in</Height>
    <Width>4.53667in</Width>
    <ZIndex>1</ZIndex>
    <Style>
    <Border>
    <Color>LightGrey</Color>
    <Style>Solid</Style>
    </Border>
    <BackgroundColor>White</BackgroundColor>
    <BackgroundGradientType>None</BackgroundGradientType>
    </Style>
    </Chart>
    <Textbox Name="Textbox2">
    <CanGrow>true</CanGrow>
    <KeepTogether>true</KeepTogether>
    <Paragraphs>
    <Paragraph>
    <TextRuns>
    <TextRun>
    <Value>=day(DateAdd("d",-1,DateAdd("M",1,cdate(cstr(Month(First(Fields!workday.Value, "DataSet3")) )+"/01/" + cstr(Year(First(Fields!workday.Value, "DataSet3")))))))</Value>
    <Style />
    </TextRun>
    </TextRuns>
    <Style />
    </Paragraph>
    </Paragraphs>
    <rd:DefaultName>Textbox2</rd:DefaultName>
    <Top>4.33833in</Top>
    <Left>2.21333in</Left>
    <Height>0.25in</Height>
    <Width>1in</Width>
    <ZIndex>2</ZIndex>
    <Style>
    <Border>
    <Style>None</Style>
    </Border>
    <PaddingLeft>2pt</PaddingLeft>
    <PaddingRight>2pt</PaddingRight>
    <PaddingTop>2pt</PaddingTop>
    <PaddingBottom>2pt</PaddingBottom>
    </Style>
    </Textbox>
    </ReportItems>
    <Height>4.71333in</Height>
    <Style />
    </Body>
    <Width>5in</Width>
    <Page>
    <LeftMargin>1in</LeftMargin>
    <RightMargin>1in</RightMargin>
    <TopMargin>1in</TopMargin>
    <BottomMargin>1in</BottomMargin>
    <Style />
    </Page>
    <AutoRefresh>0</AutoRefresh>
    <DataSources>
    <DataSource Name="DataSource1">
    <DataSourceReference>DataSource1</DataSourceReference>
    <rd:SecurityType>None</rd:SecurityType>
    <rd:DataSourceID>6abd5341-c043-4ab1-b449-c32e00efc4ac</rd:DataSourceID>
    </DataSource>
    </DataSources>
    <DataSets>
    <DataSet Name="DataSet1">
    <Query>
    <DataSourceName>DataSource1</DataSourceName>
    <CommandText>SELECT 1 ID, 1 MONTH, 50 VALUE
    UNION
    SELECT 1 ID, 2 MONTH, 30 VALUE
    UNION
    SELECT 1 ID, 3 MONTH, 20 VALUE
    UNION
    SELECT 1 ID, 4 MONTH, 10 VALUE
    UNION
    SELECT 1 ID, 5 MONTH, 25 VALUE
    UNION
    SELECT 1 ID, 6 MONTH, 50 VALUE
    UNION
    SELECT 1 ID, 7 MONTH, 10 VALUE
    UNION
    SELECT 1 ID, 8 MONTH, 20 VALUE
    UNION
    SELECT 1 ID, 9 MONTH, 30 VALUE
    UNION
    SELECT 1 ID, 10 MONTH, 40 VALUE
    UNION
    SELECT 1 ID, 11 MONTH, 45 VALUE
    UNION
    SELECT 1 ID, 12 MONTH, 50 VALUE
    UNION
    SELECT 2 ID, 1 MONTH, 25 VALUE
    UNION
    SELECT 2 ID, 2 MONTH, 30 VALUE
    UNION
    SELECT 2 ID, 3 MONTH, 10 VALUE
    UNION
    SELECT 2 ID, 4 MONTH, 30 VALUE
    UNION
    SELECT 2 ID, 5 MONTH, 45 VALUE
    UNION
    SELECT 2 ID, 6 MONTH, 35 VALUE
    UNION
    SELECT 2 ID, 7 MONTH, 10 VALUE
    UNION
    SELECT 2 ID, 8 MONTH, 50 VALUE
    UNION
    SELECT 2 ID, 9 MONTH, 20 VALUE
    UNION
    SELECT 2 ID, 10 MONTH, 14 VALUE
    UNION
    SELECT 2 ID, 11 MONTH, 40 VALUE
    UNION
    SELECT 2 ID, 12 MONTH, 45 VALUE</CommandText>
    <rd:UseGenericDesigner>true</rd:UseGenericDesigner>
    </Query>
    <Fields>
    <Field Name="ID">
    <DataField>ID</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    <Field Name="MONTH">
    <DataField>MONTH</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    <Field Name="VALUE">
    <DataField>VALUE</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    </Fields>
    </DataSet>
    <DataSet Name="DataSet2">
    <Query>
    <DataSourceName>DataSource1</DataSourceName>
    <CommandText>Select 25000 target</CommandText>
    </Query>
    <Fields>
    <Field Name="target">
    <DataField>target</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    </Fields>
    </DataSet>
    <DataSet Name="DataSet3">
    <Query>
    <DataSourceName>DataSource1</DataSourceName>
    <CommandText>
    select 1 id, '03/01/2015' workday , 100 value
    union
    select 2 id, '03/02/2015' workday , 50 value
    union
    select 3 id, '03/03/2015' workday , 400 value
    union
    select 4 id, '03/04/2015' workday , 300 value
    union
    select 5 id, '03/05/2015' workday , 250 value
    union
    select 6 id, '03/06/2015' workday , 200 value
    union
    select 7 id, '03/07/2015' workday , 500 value
    union
    select 8 id, '03/08/2015' workday , 700 value
    union
    select 9 id, '03/09/2015' workday , 50 value
    union
    select 10 id, '03/10/2015' workday , 450 value
    union
    select 11 id, '03/11/2015' workday , 350 value
    union
    select 12 id, '03/12/2015' workday , 100 value
    union
    select 13 id, '03/13/2015' workday , 100 value
    union
    select 14 id, '03/14/2015' workday , 100 value
    union
    select 15 id, '03/15/2015' workday , 200 value
    union
    select 16 id, '03/16/2015' workday , 700 value
    union
    select 17 id, '03/17/2015' workday , 450 value
    union
    select 18 id, '03/18/2015' workday , 100 value
    union
    select 19 id, '03/19/2015' workday , 700 value
    union
    select 20 id, '03/20/2015' workday , 300 value
    union
    select 21 id, '03/21/2015' workday , 100 value
    union
    select 22 id, '03/22/2015' workday , 200 value
    union
    select 23 id, '03/23/2015' workday , 700 value
    union
    select 24 id, '03/24/2015' workday , 100 value
    union
    select 25 id, '03/25/2015' workday , 100 value
    union
    select 26 id, '03/26/2015' workday , 450 value
    union
    select 27 id, '03/27/2015' workday , 200 value
    union
    select 28 id, '03/28/2015' workday , 100 value
    union
    select 29 id, '03/29/2015' workday , 450 value
    union
    select 30 id, '03/30/2015' workday , 300 value
    union
    select 31 id, '03/31/2015' workday , 700 value</CommandText>
    </Query>
    <Fields>
    <Field Name="id">
    <DataField>id</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    <Field Name="workday">
    <DataField>workday</DataField>
    <rd:TypeName>System.String</rd:TypeName>
    </Field>
    <Field Name="value">
    <DataField>value</DataField>
    <rd:TypeName>System.Int32</rd:TypeName>
    </Field>
    </Fields>
    </DataSet>
    </DataSets>
    <Language>en-US</Language>
    <ConsumeContainerWhitespace>true</ConsumeContainerWhitespace>
    <rd:ReportUnitType>Inch</rd:ReportUnitType>
    <rd:ReportID>59e8101c-8585-409d-82e7-c6719e928567</rd:ReportID>
    </Report>
    Thanks
    Prasad
    Mark this as Answer if it helps you to proceed on further.

  • OBIEE 11g: Chart showing Hand Symbol on Over

    Hi All,
    We've an issue with Chart.
    Chart is currently showing Hand symbol when over the mouse on bars(Vertical or any type of bar) though no action link/drill enabled.
    Customer doesn't want the hand symbol pointer as user thinks that there is some navigation enabled. It should be frozen and mouse pointer should be a normal pointer such that user think that there is no interaction & as frozen.
    We tried setting Value No interaction in column properties & also checked with some CSS setting cursor: pointer in column properties. But these are working for Table view but not to chart..
    I'm using OBIEE 11g (11.1.1.5)
    I also checked metalink but no use here.
    Your inputs are valid here.!

    Is there a way I can click on any of the legends and have an option to include or exclude the corresponding line from the chart?
    Not in OBIEE ...Tableau have Exlude only / Include only 

  • Render a trending line chart that tracks 5 values over 13 weeks

    I want to create a line chart that display a trend for 5 categories over 13 weeks. Can someone give me an idea of how the view context would be designed for this at design time?
    I'm new to web dynpro so i hope this makes sense. Would the view context appear similar to this?
    ChartData (node)
    --CategoryType (value attribute)
    --Wk1Value
    --Wk2Value
    --Wk3Value
    --(wk4 through wk13Value)
    Thank you,
    julian

    Crystal Reports is a database reporting tool, thus Crystal's charting engine plots data FROM the database.
    Excel is not; one can manually add values to Excel then plot those values on a chart in Excel.
    So if they only have 5 weeks worth of data being pulled in to CR they'll get a chart for 5 weeks.
    Suggestion:  Report off the excel spreadsheet and pull that data in along with the Excel chart.

  • Ssrs line charts

    Hi,
    I have a report,in this report having some line charts but these are not effective look for clients.I need to be create effective line charts for clients.Please help me guys

    Hi MS SQLSERVER,
    Per my understanding that you want to create an line chart more effective and dynamic, right?
    I would like you to provide more details information about your requirements about the effective you mentioned and also provide us sample data of table.
    Please reference to some good sample of chart below:
    http://www.bigator.com/2012/03/12/line-chart-bar-chart-in-ssrs-report/
    https://www.simple-talk.com/sql/reporting-services/sql-server-reporting-services-advanced-charting/
    If you still have any problem, please feel free to ask.
    Regards,
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • How do I change legends in line charts when you change line type

    I have created a line chart with two lines. I only have a black and white printer. If I change the two lines to black, the legends change to match. To distinquish the two lines I change the line type making one dots and the other dashes. The lines change but the lengends don't. This makes the graph useless.
    Any suggestions on how to get the lines in the legends to change to match the lines in the graph?
    Thanks for any help.
    Paul

    I could not get the line legends to differ either. You can add a marker to only 1 of the plots though:
    Regards,

  • Line chart showing final value only?

    Is there a way to have a line chart that shows the value against the final data point only?
    eg something like this
    ----------------------74
    instead of
    1----13----28---42----74
    Thanks

    Thanks I appreciate your comments and agree I will have to put some effort in, I tend to try and work things out I need by messing around when I need a specific function or have a specific thing I want to do and focus on that without perhaps learning the underling basics.
    I've been spoiled by Excel, there is a lot of stuff its significantly easier (for me anyway) to do without undergoing any learning curve at all, with wizards for functions (for example) and in many cases if you right click on something you can alter it right there, rather than having to go up to the inspector and work out which of umpteen functions the bit you want to alter is hidden in. If the inspector was a person, I would have strangled them to death by now
    I'm not sure if this is my Mac or what, but if I go into numbers help and type anything in, I just get the spinning thing next to the magnifying glass, but it never comes back to me. It works OK if I follow links. For example I just typed 'charts' in help and hit enter, 5 minutes later I"m still waiting. Doesn't increase my confidence I'll have to look into that and see whats going on.
    Thanks to everyone for your help, the guys will be impressed with the new chart !

  • Issue with displaying multiple line charts in same applet at a time

    Can you please help me in displaying the 3 different line charts  in a same applet at at  a time.
    And these 3 line charts  taking the data from 3 different queries.

    An applet can only be fed by a single query template - have you considered the AggregateQuery, or an XacuteQuery?

  • Line chart and Bar char Mouse Over

    Hi All,
    I have to plot Bar chart with Material is on X-axis and Cost is on Y-axis, I am able to do that.
    But when mouse put over the bar in the chart it should be showing the Material Description .
    Could you please any one help me.
    Material   Material Desc    Cost($)
    10000      xxxxxxxxx       10,000
    10001     xxxxxyyyyy      10,000
    Thanks
    Muvva

    Hi,
    I think, there is no direct solution.
    There is a workaround.
    1. Disable mouse over Test.
    2. Enable drildown on mouse over and use that index to identify column which user selected.
    3. Display Material Description and Value using label components.
    But the issue is ,we have to identify a placeholder in graph to display these values.
    Regards
    Baby

  • Change Background over time

    I've managed to pull my key successfully, but I really want to have different backgrounds appear at different times during the scene. I suppose I'm just trying to figure out how to keyframe the appearance of an Over node. Anyone know how to do this?
    Lawrence

    Lawrence Ingram_Ii wrote:
    Say, do you think I would do better to add the layers (all of my backgrounds) in the timeline in FCP, then export the entire session to Shake for compositing? Or maybe I should just render the entire scene with the alpha channel, then insert the background once back into FCP.
    It depends how much flexibility you need. It would be easier to do whatever you need to in FCP, then export to Shake, but it would be more time consuming if you need to make changes later on. The second option would be more flexible in terms of future modifications, but it might be difficult if you have to color correct the backgrounds to match the foregrounds or wrap the light around the foreground object, for example.

  • SSRS 2008 R2 Line Chart Issue

    Hi, 
    Problem:
    I have an issue of SSRS Line Chart extending backward and forward (same issue discussed in post - http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3cebd5b2-bb15-4bd1-be16-0daadc613082/)
    when Empty point option Value is set Average 
    I tried sorting on Category Group as suggested by Sean Boon in the URL mentioned above. But, still the issue is not fixed. 
    I am using SSRS R2. 
    Thoughts ?

    Hi, 
    Problem:
    I have an issue of SSRS Line Chart extending backward and forward (same issue discussed in post - http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3cebd5b2-bb15-4bd1-be16-0daadc613082/)
    when Empty point option Value is set Average 
    I tried sorting on Category Group as suggested by Sean Boon in the URL mentioned above. But, still the issue is not fixed. 
    I am using SSRS R2. 
    Thoughts ?
    I am running into the same issue again :( 

  • Plot empty point in line chart with previous non empty value

    Hello,
    I have a problem to plot series data in SSRS line chart, with the empty point, I don't want use average and zero provided by the report builder, I want use the last non empty data to fill the empty point, tried to use expression =Previous(Field!Value), no
    luck, any one have some good idea?
    P.S. do not want to use query to fill the null with previous non null value, just from the performance point view. at last , the chart should have some line as square wave with different height, if I use average for empty point, it shows slop wave line which
    is not reflect the real production.
    Thanks
    Richard 

    Hi Richard,
    In Reporting Services, if the chart type is a linear chart type (bar, column, scatter, line, area, range), null values are shown on the chart as empty spaces or gaps between data points in a series. By default, empty points are calculated by taking the average
    of the previous and next data points that are not null.
    If we want to use previous value to replace the empty value, please refer to the following steps:
    Right-click the field which displayed in Y axis (Height) to open the Series Properties.
    In the Value field to modify the expression to look like this:
    =iif(isnothing(Sum(Fields!Height.Value)),previous(sum(Fields!Height.Value)),sum(Fields!Height.Value))
    The following screenshot is for your reference:
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Changing a Filter Over Time

    I've had a lot of trouble with this. I'm trying to change a filter over time (i.e. make a voice get more reverberative as it continues). I've had a little luck with some filters--some of the options for the filter show up on the envelope line so I can set key frames, but more often than not, nothing shows up there at all, or what does show up there is not the option I want to change.
    For example, say I want to change pitch over time. The only option that shows up that I can set key frames for is the delay rather than the pitch.
    I know I'm missing something simple here.

    So, I take it that you're in STP, working on a multi-track project.
    In the lower left on the effects tab, go to the correct track/effect you want to change, and click the disclosure triangle to show all of the parameters. Check the box to the right of each parameter you want to change over time, and it will be added to the available envelopes.
    Hope this helps!

  • Line Chart & "don't summarize"

    Post Author: HelenW
    CA Forum: Charts and Graphs
    I am trying to create a simple line chart showing the value of an integer variable plotted against the time of day (24 hours). My problem is that when I choose the field that I want to plot, the checkbox for "don't summarize" is disabled, and I have no choice but to summarize the data. I am using Crystal Reports XI Release 2. Any suggestions?
    Thx
    Helen

    Post Author: Sriram Venkataramani
    CA Forum: Charts and Graphs
    Hi Helen,Had the same problem. Interestingly, the solution is that the "Don't Summarize" field is only available for formula fields.If you don't want to summarize a field, create a new formula which returns the value of that field. That should do the trick.Source: http://publib.boulder.ibm.com/infocenter/radhelp/v6r0m1/index.jsp?topic=/com.businessobjects.integration.eclipse.doc.crdesigner/reportdesigner/crurfchartexpertdatatab.htm - Sri

Maybe you are looking for

  • Basic row-by-row data entry

    I must just be missing something very simple here, because I can't imagine no one's asked this before if there's not a simple solution. My primary use for spreadsheets is to enter many rows of data. Each row has the same number of entries (columns),

  • How to align (center) field's content in the section (band) limits

    The environment is:  CR version: CR version: CR 10.2.3600 VS version: VS 2005 Prof + C# Application type: Windows application The Text objects can have set crHorCenterAlign property. There are no similar crVertCenterAlign property.  So, how can we ve

  • Has anyone gone from Netweaver 7.0 to Enhancment Pack 1 on a BW system ?

    Would like to know how the change went for you ?   Problem areas  ? Were you using it with Business Objects and Webi, so did you see the improvements in MDX performance ?

  • Closed Circuit TV into my iMac G5 (UK)

    I would like to put connect a video signal from a CCTV to my G5 iMac in UK. I guess it needs some hardware to connect to the Firewire or USB port. I can find some products but they all seem to do more than I want ie are TVs as well is there any low c

  • Cannot Load Software

    I have been trying for days to load even the smallest of software. Then today decided to try reloading my 10.3.9 entirely. When any software starts installing and it gets to the end of the list I get an error message: "There were errors installing th