Dashboard column line chart with line on top

Hi
i use in my Dashboard project a column line chart  to vien two mesure ( pic1)
the business needs want to view this chart  like this (pic2) its means that they want to vien the line in the top
How make this requirement  please.
thanks

Hi,
i have two series :
1-salary
2-evolution rate of salary
i tried to use primary and secondary axis but no succes
this is a sample of data:
2010     1400     0%
2011     1400     0%
2012     1260     -0.9%
2013     1300     1.03%
2014     1480     1.14%
Any idea ?
Thanks

Similar Messages

  • 2D Column Flash Chart - Series Showing Zero Values in Chart

    Hi,
    I have created a 2D Column Flash Chart - with 6 series with different coloring of bars..I have obtained the result as I wanted.
    Now the problem is the distance between one series to another series is filled up with value 0.
    Anybody please help me remove the 0 value in chart which is coming between series.
    Thanks
    JP

    Hello,
    I guess you must have data that reflect the 0 value, no?
    In your query can you do WHERE value <> 0, so they don't get taken into account or is it the purpose to keep them in?
    Thanks.
    Regards,
    Dimitri
    http://dgielis.blogspot.com/
    http://www.apex-evangelists.com/

  • Stacked Column Chart with Lines

    Requirement:
    User stacked Column chart to display data for defects for 4 departments.
    1 or 2 lines to show baseline for defects(constant).
    Is there anyway that I can do that just like we can create one in Excel?
    (stack a Stacked column chart with a line chart is not a solution.)
    Any advises?
    Thanks,
    Wen

    Hi Wen,
    I realise that you are not going to get this to work with a standard component on its own. I think it might be possible to acheive it with overlaying barcharts and combination charts.
    My assumption is that you are looking for something that has a stack with 3 separate items in it. Two target lines crossing over the stacked chart.
    I will have a look at this to see if I can come up with something. Let me know if this is not your requirement.
    No, I don't work for SAP. I think those that do have the SAP logo beside them.
    Regards
    Alan

  • Stacked Column Chart with Line

    Hi
    I need to Create a Stacked Column Chart representing 1 set of measures with a Line representing a target.
    I want to create a chart where the Sales Amount in different Sectors is represented as a stacked column and the targets are represenetd as a line.
    Currently BO supports Bar charts with line.
    Does anyone know if such a feature will be supported in the new release of BO XI. Also is it possible to raise a request for this feature to be included in the new release
    TIA

    We are also a 30 persons department (Marketing) using in the same BO charts (since 2001) quarters made of :
    - first single column ( 2014 billing in a query1)
    - second stacked column (2015 billing +2015  firm orders backlog, 2015 frame orders backlog in a query2)
    - third single column (2016 backlog in a query3)
    and a superposed budget line
    the first and the third column are offset respectively to the left and right of the second column by blank and dummy single columns of data called ghost1 and ghost2. 2016 is still empty here but the principle is clear.
    This principle is used liberally in 200 + different reports. Also with transparent columns and other complicated, but graphically intuitive reports.
    How can we continue to use this very natural representation of our several hundred million $ business. I have not found the mixed single column, stack column and line option in BO XI 3.1 . Please re-develop one asap if necessary. SAP should please please report asap on the recovery timeline of this lost feature. The switch from Visual Basic development to Java development should not lead to regression of any feature.
    Regards.
    Jean-Marc Imbert
    Marketing manager

  • Multiple Line Charts with Column Chart

    I want to show two line charts with a column chart.  Everything goes on the screen fine, except the two line charts origination point always starts at the same point despite the numbers being different.  For example, the ls1 might read 280, 190, 180 and the ls2 is 175, 188, 177 but both origination points start at 280.  The other two datapoints should also be close together but they have a substantial gap of about 50 between them.  Obviosuly I want to have two separate lines.  I have also tried moving the line series below the first lines series with no success.
    <mx:ColumnChart dataTipFunction="formatDataTip"id="
    myChart" dataProvider="
    {FCVData}" showDataTips="
    true"selectionMode="
    single"change="event.stopImmediatePropagation()"
    width="
    100%" height="95%" y="50">
    <!-- vertical axis -->
    <mx:verticalAxis>
    <mx:LinearAxis title="mytitle" labelFunction="defineVerticalLabel"id="
    v1"baseAtZero="
    true" />
    </mx:verticalAxis>
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="
    {MYData}" categoryField="
    YEAR" 
    />
    </mx:horizontalAxis>
    <mx:series>
    <mx:ColumnSeries id="
    pb"color="
    #FFFFFF"xField="
    YEAR" yField="B
    UDGET" displayName="
    Budget"hideDataEffect="
    zoomOut" showDataEffect="
    zoomIn">
    <mx:fill>
    <mx:SolidColor color="{colColor1}"/>
    </mx:fill>
    </mx:ColumnSeries>
    <mx:LineSeries id="ls2" dataProvider="
    {MYData}" yField="
    ACTUAL"displayName="
    Actual" 
    >
    <mx:itemRenderer>  
    <mx:Component>  
    <mx:DiamondItemRenderer/>  
    </mx:Component>  
    </mx:itemRenderer>  
    <mx:lineStroke>
    <mx:Stroke color="
    {lineColor2}" weight="
    5" alpha="
    .5" 
    />
    </mx:lineStroke>  
    <mx:verticalAxis>
    <mx:LinearAxis id="v3" baseAtZero="true"/>
    </mx:verticalAxis>
    </mx:LineSeries>
    <mx:ColumnSeries
    id="
    asytd"color="
    #FFFFFF"xField="
    YEAR" yField="
    SPEND" displayName="
    Spend "hideDataEffect="
    zoomOut" showDataEffect="
    zoomIn">
    <mx:fill>
    <mx:SolidColor color="{colColor2}"/>
    </mx:fill>
    </mx:ColumnSeries>
    <mx:LineSeries id="ls1" dataProvider="
    {MYData}" yField="
    PLAN"displayName="
    Plan" 
    >
    <mx:itemRenderer>  
    <mx:Component>  
    <mx:CrossItemRenderer/>  
    </mx:Component>  
    </mx:itemRenderer>  
    <mx:lineStroke>
    <mx:Stroke color="
    {lineColor1}" weight="
    5" alpha="
    .5" 
    />
    </mx:lineStroke>  
    <mx:verticalAxis>
    <mx:LinearAxis title="title" id="v2" baseAtZero="true"/>
    </mx:verticalAxis>
    </mx:LineSeries>
    </mx:series>
    <mx:verticalAxisRenderers>
    <mx:AxisRenderer placement="left" axis="{v1}"/>
    <mx:AxisRenderer placement="right" axis="{v2}"/>
    <mx:AxisRenderer visible="false" placement="right" axis="{v3}"/>
    </mx:verticalAxisRenderers>
    </mx:ColumnChart>

    Hi,
    Still Trying:
    I've now got this code to function:
    var i:int = 0;
                    for each (var cat:* in event.result.chart.categories.category){
                        //mx.controls.Alert.show(cat.label);
                        var z:int = 0;
                        for each (var valuee:* in event.result.chart.dataset){
                            //mx.controls.Alert.show(event.result.chart.dataset[z].seriesName);
                            //mx.controls.Alert.show(valuee.sete[i].value);
                            z++;
                        i++
    which works fine, how can I get in into Array to make a dataset for the flex charts?
    Thanks,
    Elad

  • Line chart with 2 different y axis

    hi,
    i have a question on line chart in apex. i'm using apex 4.2. is it possible to generate a line chart with 2 different y axis? here's a sample data to illustrates what i'd like the chart to look like.
    date price percent
    1/1 1 100
    1/2 2 90
    1/3 3 80
    1/4 4 70
    the x-axis will be the date column. the left y-axis would be the price column. and the right y-axis would be the percent column.
    i know i can plot multiple lines in a chart thru different series. but they're based on the same x and y axis range. thanks
    jim

    You beat me to it.
    One of the problems I'm having is that the begining and ending point(s) coincide. So, instead of two completely separate lines, I have an area bounded by the series 1 line on top and the series 2 line on the bottom. Since the points overlay, the values of those points also display one on top of the other. I'll have to see if there is a way to separate the series. I've had 3 separate series before, but never with two y-axis.
    Regards,
    Howard

  • Creating SVG Chart with multiple lines

    Hi All,
    I want to create a chart with multiple lines.
    Ex: I have one emp table with empno, sal and deptno columns.
    I want to print deptno in x axis and no of employees on y axis.
    I want to print one line for employees with sal > 15000 and one more line for employee with sal =< 15000
    So one line will show no of employees with sal more than 15000 for each dept. Similar case for the other line and these 2 lines should be in different colors.
    For one line the query will go as
    select link, deptno, count(empno)
    from emp where sal > 15000 group by null, deptno
    Is this possible to draw this chart?
    Thanks,
    Manoj

    I wasn't able to do something like what you describe, but I was able to do this:
    I defined column A of the table as a Header Row, selected the cells in the table, and chose this chart type (2D 2 Axis):
    Then I clicked the chart and in the pane at the right checked 'Axis Name' in the Axis tab and added the axis names.
    Maybe this can give you an idea of how you can illustrate the relationships that you want to show.
    SG

  • Bubble chart with connecting line

    Hi All,
    Is there a way we can create bubble chart with connecting line.The bubble chart has only two measure, horizontal and size of bubble connected by lines. I am not able to find this kind of chart.Is there a way for similar chart?
    I am showing the chart in this link.
    http://imageshack.us/photo/my-images/689/bubblewv.png/
    Thanks,
    Vishal
    Edited by: 872073 on Sep 27, 2012 7:20 AM

    I need to make an assumption to answer your question:  I need to assume that you are getting your data with a query similar to:
    select DoW, Part, sum(qty) as Count
    from sales
    group by DoW, Part
    Change that to...
    select DoW, Part, sum(qty) as Count
    from sales
    group by DoW, Part
    UNION ALL
    select distinct "Target" as DoW, Part, 50 as Count
    from sales
    That will feed the target into the cross tab, which will create an additional column, Target, with the value 50 for all parts.  If the target is for the day, not part, then you would UNION
    select distinct DoW, "Target" as Part, 50 as Count
    from sales
    which would give you an additional row with the constant target value of 50.
    HTH,
    Carl
    P.S.,  There might be (probably is) better tables to use as the FROM table for the target SELECT.  I wanted to keep things simple...

  • Line chart with mutiple value formats

    Hi,
    I have a chart built with Crystal Reports 2008 with two column lines.  One of the lines represents Quantity and the other line represents Percentage.  I set two Y axis (Y1 for Quantity line and Y2 for Percentage) for the two lines.  My problem is that when I set one of the lines' value format as Percentage, value format of both lines become percentage.  I cannot set one of the line value formats as percentage and the other one as number.  Would you please advise how I can set one of the line's value format on the chart as numbers and the other one as percentage?
    Thanks,
    Al

    Hello Al,
    How exactly are you setting one of the lines' value format as Percentage?
    And what are you setting it to be a percentage of? or are you trying to dsiaply one series data labels with a percentage symbol?

  • 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

  • Problem creating line chart with character data

    Post Author: burkartt
    CA Forum: Charts and Graphs
    CR Developer v. 11.5.0.313
    I want to create a line chart with data from a SQL2K table to show how much server time each application uses per day. All data is defined a character.
    HWA,4/24/2007,01:44.6HWA,4/25/2007,12.28HWB,4/24/2007,4.6HWC,4/24/2007,55.55HWC,4/25/2007,01:22.3HWE,4/24/2007,01:16.1HWE,4/25/2007,0.59
    I want one horizontal line per application where the X-axis represents the date and the Y-axis represents the server time. I have tried all column combinations for "On Change Of" and "Show Value(s)". What confuses me is why are Count and Discount the only Summary Options for the "Show Value(s)" data?
    Thank you,
    tim

    Post Author: V361
    CA Forum: Charts and Graphs
    I created a group based on date, day, then created the chart and put it in the group footer, on change of server, show sum of time, you will get a seperate chart for each day.  I am not sure if this will help, or will just do.  Since you have CR XI, you may want to look at the gauge chart also....

  • Chart: Columns + line

    Hi,
    In Visual Composer 7.0, if i use the Combo Chart with configuration "Columns + line",
    the Column are overlapped.
    Pax 2007 -> Column A
    Pax 2008 -> Column B
    Budget 2008 -> Line
    Column A and Column are overlapped and i want to see separate columns ...
    Is there the same things with 7.1 ?
    Any idea ?
    Thanks
    Rodolphe.

    Hi Rodolphe,
    If I understand you correctly, you would like to assign the columbs to series A and the Line to series B, that way to create an overlap.
    As far as I know it is not possible to do that in VC7.1 ,since the type of the chart does not effect the way you define your series.
    regards
    Yogev.

  • My PC has blue screened twice in the past week so I force quit it it came back on a few times after that it is now grey screening with inch wide blue lines from top to bottom the apple logo is there and it is trying to boot up but nothing happening

    My Mac has blue screened a couple of times this week it started to work a couple of times after that but now it is grey screening with inch wide blue lines from top to bottom the apple logo is also there it is trying to boot up again but won't. Not sure don't know anything about how to fix things but I suspect the fan has stopped working as I can't hear one. The problem I have I now live in Turkey and I am 1000 km from the nearest apple shop which is in Istanbul I believe and I now live in Didim, Altinkum I don't trust the everyday Turkish shop to take it to as they will tell you they know how to fix it but will probably make it worse, typical in Turkey. Please can someone help as we use it for our business and obviously I need it up and running ASAP I am using IPad and iPhone at moment but can't access my files which are on PC.

    Thanks for that information!
    I'm sure I will be calling AppleCare, but the problem is, they charge for the phone calls don't they? Because I don't have money to be spending to be on the phone with a support service.
    In other things, it seemed like the only time my MacBook was working was when I had Snow Leopard without the 10.6.8 update download that was supposed to be done to prepare for OS X Lion.
    When I look at the information of my HD it says that I have 10.6.8 but that was the install that it claimed to have failed and caused me to restart resulting in all of the repeated problems.
    Also, because my computer is currently down, and I've lost all files how would that effect the use of my iPhone? Because if it doesn't get fixed by the time OS 5 is released, how would I be able to upgrade?!

  • How to limit data range in a Line chart with Time Refresh Control

    Hi All,
    I have a Line chart with Time Refresh Control and I would like to make some constraints to this navigation.
    For example, I would like to limit the user to navigate in a data range of 8 hours.
    Is this posible?
    Thanks in advance

    Hi Pedro,
    as far as I know, this is not possible using the time controls on an iChart. However, you may have some success by using your own time controls which call JavaScript methods exposed by the applet.
    For example, you could begin by hiding the time and calendar buttons on an iChart, and creating some buttons of your own. For instance, to set the start date of a query (and thus the start date of the iChart using the query), you can use the following:
    document.getElementById("appletID").getQueryObject().setStartDate(<date string>);
    Using code like the above (look into the xMII script assistant and documentation), you should be able to build time controls which satisfy your requirements. The exact format of <date string> in the sample above will depend on the date format defined in the query template this script calls.
    Hope this helps,
    Sascha

  • Safari 5.1 now is garbled with many of the sites having lines on top of each other. Is any one else having that issue? If so, how did you resolve it? Thanks in advance for any help.

    Safari 5.1 now is garbled with many of the sites having lines on top of each other. Is any one else having that issue? If so, how did you resolve it? Thanks in advance for any help.

    "Did you make the .psd file with a transparent background (checkerboard) in Photoshop? And when you placed it in AI did you choose the top option Convert Photoshop Layers to Objects?"
    Yep, and it still didn't work.
    But I figured what I did wrong: I was selecting both the text and the heart, and then I was doing the whole Object>Wrap Text>Make thing, as opposed to just selecting the heart and doing it. Once I did it, I moved the heart around on top of the text, and it "made room" for the pic, wrapping itself around the heart.
    Thanks so much, and thanks A MILLION for being so patient.
    Jeez, when can I get some textbook to learn all the intricacies of Illustrator?

Maybe you are looking for