Line graph - lines position

Hi,
I have two lines in Line graph which represents current and previous years data. I have configured Style and conditional Formatting , and mentioned Positions as
1 Current
2 Previous year
but while displaying lines , sometimes current year line is overlapping previous year line and previous year line overlapping current year.
Can we make current year line to be always displayed at the top layer?
Thanks,
Hesh

Hi All,
I would like to hear from the folks who already had such problem. I want to confirm my client whether its an issue in OBIEE or I need to do something else from my side to get this done.
I highly appreciate any help on this.
Thanks,
Hesh

Similar Messages

  • Line Graph - Lines

    Hi all,
    I have a line graph - defined as custom.   The line graph has lines that are not wide enough to be visible from a distance.   Does anyone know how to make the lines wider?
    Thank you,
    Michelle

    Thank you Jeremy.  The concerns you listed are valid.
    When 12.1 is available and we upgrade the thicker line will be great.  We are currently on 12.0.
    Unfortunately we have a newer installation of MII.   That means, we are still in the "prove it" stage.   We purchased a huge monitor.  (I'm not sure of the size anymore.)  That monitor is mounted above the lines on the shop floor.  The object is to give immediate information to the line on performance.   The graph shows the amount of "bottles"  that go thru the line every 15 minutes.  It is automatically updated.   There are 3 lines.  One for the upper limit, one for the lower limit, and one for the current produced.   This gives them a nice picture, if only they could see the lines.
    I added line marks - they didn't like that because the graph became too messy.   So the solution appeals to me.  With the future enhancements to MII we can go back and change the graph later.  I'll put it in our enhancement list.
    Our production area is very positive on getting something new for themselves.   Our executives get the high level.  The people on the floor get the instant information.   I want to keep that enthusiasm going.

  • Line Graph - Line Width

    i am having line graph with 2 lines . lines are coming thicker by default i want to make one of the line in my graph thinner. how can i do that below is my graph xml
    chart:
    <Graph seriesEffect="SE_AUTO_GRADIENT" graphType="LINE_VERT_ABS" graphicAntialiasing="true">
    <LegendArea visible="true" />
    <Title text="Center Growth" visible="true" horizontalAlignment="CENTER">
    <GraphFont bold="true" italic="false" underline="false" />
    </Title>
    <SeriesItems>
    <Series id="0" color="#0000FF" />
    <Series id="1" color="#FF0000" />
    </SeriesItems>
    <O1Title text="Weeks" visible="true" />
    <Y1Title text="Attendances" visible="true" />
    <LocalGridData colCount="{count(xdoxslt:group(.//G_2,  'FWN'))}" rowCount="2">
    <RowLabels>
    <Label>RSum V</Label>
    <Label>RSum</Label>
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group select=".//G_2" group-by="FWN" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Label>
    <xsl:value-of select="current-group()/FWN" />
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each-group select=".//G_2" group-by="FWN" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/RSUM2[.!=''])" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//G_2" group-by="FWN" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <Cell>
    <xsl:value-of select="sum(current-group()/RSUM1[.!=''])" />
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>
    please let me know i what is the code i need to add to make my line line thinner.
    i checked line style but it didn't help..

    is it possible to control line width in line graph.i tried to look for the option to control the width of lines ,not able to find anything on this.

  • 3d line graph: Line not visible

    How come the line is only visible when the user click on the 3D graph?
    The attached VI load some data into the 3D graph but it's not visible.
    When the user click on the 3D graph, the line shows up
    From the moment the mouse button is released the line disappears
    What am I doing wrong??
    Thanks for your reaction!
    I'm using LV 8.6
    Attachments:
    Trial-3DLine-002.vi ‏39 KB

    Who programmed the CW 3D graph control???
    Since the Caption & Label properties didn’t act as expected, I connect a control to each of them to play with.
    This is what I found out:
    Caption color: doesn’t influence the graph at all
    Caption Opposite visible: Ok
    Caption visible: Ok
    Caption font size: doesn’t influence the graph at all
    Caption text: Ok
    Grid color: doesn’t influence the graph at all
    Grid visible: Ok
    Label Color: doesn’t influence the graph at all
    Label Opposite Visible: Ok
    Label Visible: Ok
    Label Font size: The size of the Caption is changed !!!!
    Tick Color: Ok
    Major Tick visible: Ok
    Minor tick visible: Ok
    Major tick count: Ok
    Minor tick count: Ok
    Range Autoscale: Ok
    Range maximum: Ok
    Range minimum: Ok
    I’m sorry but did I pay for that ?? ??
    Attachments:
    Trial-3DLine-004.vi ‏48 KB

  • Animating a line graph

    Dear javafx coders
    I am a physics teacher in London and I am trying to learn JFX so that I can make animations for use in lessons. I don't know much about programming, but so far I have successfully managed to animate a circle which oscillates up and down (please see code below):
    package javafxapplication22;
    import javafx.stage.Stage;import javafx.scene.Scene;
    import javafx.scene.Node;import javafx.scene.shape.Circle;
    import javafx.animation.Timeline;import javafx.animation.KeyFrame;
    import javafx.scene.input.*;import javafx.animation.*;
    import javafx.scene.*;import javafx.animation.transition.*;
    import javafx.scene.shape.*;import javafx.scene.paint.*;
    import javafx.scene.transform.*;import javafx.stage.*;
    import javafx.scene.control.*; import javafx.scene.text.Text;*
    *import javafx.scene.Scene;import javafx.scene.text.Text;*
    *import javafx.scene.text.Font;*
    *var yold:Number=100; //old y pos*
    *var ynew:Number=100; //new y pos*
    *var yvel:Number=5; //y velocity*
    *var yacc:Number=0; // y acceleration*
    *var freq=0.001; //frequency of oscillation*
    *var time = Timeline {*
    *repeatCount: javafx.animation.Timeline.INDEFINITE // never stop*
    *keyFrames: for (i in [30..40])*
    *javafx.animation.KeyFrame*
    *time: 100ms*indexof i // each frame is 100ms apart*
    *action: function ()*
    *yacc=-39.48*freq*(yold-100); //calculate acceleration
    yvel=yvel+yacc; //update velocity
    ynew=yold+yvel; //update position
    MoveTo {x: 200+i*10 y: yold absolute: false} //graph from old position ...
    LineTo {x: 200+(i+1)*10 y: ynew absolute: false} //..to new
    yold=ynew;
    Stage {
    scene: Scene {
    width: 400
    height: 200
    content: [
    Circle {
    centerX: 100;
    centerY: bind ynew,
    radius:20,
    onMousePressed: function(e:MouseEvent) { time.play(); }
    } The circle behaves as expected and oscillates up and down. However, I would also like to graph its motion beside it (using moveTo and lineTo, you can see these two lines above) but no lines at all appear on the screen. The idea is that on each new frame a portion of the line graph is added (i.e. from the old y position to the new y position, also adding on an equal x increment each time as we move along the time axis.
    Any help on this would be really appreciated - I am very keen to move away from technologies such as Flash, but at the moment I am finding JFX a bit difficult.
    Thank you
    Matt Klein

    aheem...well! then how about this animation...I think I know what you are trying to do then. If I'm not mistaken, you are trying to do what the Ti-83 can do when graphing.
    Well! here is an idea on how I would do a simple animation on a graph
        This is an animation graph
    package animationgraph;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.chart.LineChart;
    import javafx.scene.chart.part.NumberAxis;
    import javafx.animation.Timeline;
    import javafx.animation.KeyFrame;
    * @author JJ
    //The start values of x & y for line 1
    var line1StartX : Number = 8;
    var line1StartY : Number = 10.2;
    //The end values of x & y for line 1
    var line1EndX : Number = 0;
    var line1EndY : Number = 0;
    //The x & y values for line 2
    var line2X : Number = 0;
    var line2Y : Number = 0;
    //Creates a line chart
    var getLineChart =  LineChart
         title: "Line Chart"
         xAxis: NumberAxis {
              lowerBound: 8
              upperBound: 9.1
         yAxis: NumberAxis {
              lowerBound: 0
              upperBound: 30
         data: [
              LineChart.Series {
                   name: "Line 1"
                   data: [
                        LineChart.Data { xValue: bind line1StartX  yValue: bind line1StartY}
                        LineChart.Data { xValue: bind line1EndX yValue: bind line1EndY }
    //Keeps track the time for line 1
    var keepTime1 : Number = 6;
    //Animation for the line chart
    var line1Animation = Timeline
         keyFrames: KeyFrame
                time:1s
                action:function()
                    keepTime1--;
                    if(keepTime1==5)
                        line1EndX = 8.1;
                        line1EndY = 10.5;
                    if(keepTime1==4)
                        line1EndX = 8.3;
                        line1EndY = 11.0;
                    if(keepTime1==3)
                        line1EndX = 8.5;
                        line1EndY = 11.5;
                    if(keepTime1==2)
                        line1EndX = 8.7;
                        line1EndY = 13.0;
                    if(keepTime1==1)
                        line1EndX = 9;
                        line1EndY = 15.5;
           repeatCount:5
    Stage {
        title: "Animation Graph"
        scene: Scene {
            width: 500
            height: 500
            content: [
                getLineChart
    line1Animation.play();

  • I need Legends shape same as of markers in Line Graph

    Hi ,
    I used below given code in one of my Line Graph where I need to have same shape of markers in legends as they are in line graph but due to some problem with the given code I am not able to achieve my task :
    <Graph markerTooltipType="MTT_VALUES_TEXT" markerDisplayed="true" graphicAntialiasing="true" graphType="LINE_VERT_ABS" markerShapeInLegend="true">
    <DataMarker markerSize="100"/>
    <LegendArea automaticPlacement="AP_NEVER" position="LAP_BOTTOM" legendMarkersPerRow="1"/>
    <SeriesItems>
    <Series id="0" color="#ff0000" markerShape="MS_TRIANGLE_UP"/>
    <Series id="1" color="#66" markerShape="MS_SQUARE"/>
    <Series id="2" color="#4300" markerShape="MS_PLUS"/>
    </SeriesItems>
    Legends are not showing same marker shape as in the graph.Could anyone please verify this??
    Thanks in Advance

    Hi Prags
    You did not mention the version of BIP that you are using?
    I have been investigating this and I think your code is correct - but there is a bug in the chart engine code #5764496
    I suggest logging an SR against us 1479 and asking support to log a bug against us to pick up this fix into our BIBeans library
    Regards
    Tim

  • 2D Line Graph Question

    I have a 2D line graph that I built. At some points in the graph where the lines intersect the number values displayed on the graph get bunched up and it is hard to read. Is there a way to fix that? This is APEX 3.2 on Oracle 10.2.0.4 database. Thanks

    You basically have only a couple of options here:
    First, turn off the labels and possibly turn them into Hints. They wouldn't show on the chart, but when the user held over the data point, a tool tip would appear showing them the valuable.
    Second, adjust elements of the chart. What you are really looking at here is that your data set is causing this specific issue and not the charting engine or anything like that. You could try to manually change the axis max and min to get more spacing, or you could adjust the height of the chart to get more spacing, but this may not be a viable option. You could have one set of labels above the plotted line and another set of labels below the plotted line that way the values do not overlap with anything. However, from a conceptual standpoint, it will be difficult to determine in code which line should have values above and which should have values below. When your data set changes, you may end up with labels in the wrong place if you hard code where they are at.
    The current XML reference can be found at: http://www.anychart.com/products/anychart/docs/xmlReference/index.html however, that is for anychart 5. I'm looking for the link to the earlier versions...
    You can use this to create custom xml where you can adjust the position of the labels.
    Finally, you do not want expand the height of the chart between two points on the Y axis. That would change the structure of the chart and the visual properties of the chart and the shape of the data would be askew. You cannot do this for good reason. You can though use a logrithmic scale. In most cases though, this is not a practical solution. Data sets need to have very specific characteristics in order to be able to merit a logrithmic scale. Most queries require a simple linear scale.
    Austin

  • How do I make a line graph that shows temperature readings taken on specific dates?

    I need to make a chart of my wife's temperatures taken via ovulation thermometer. All I need is a line graph that shows the temperatures on the y axis and the dates the measurements were taken on the x axis.
    What is the easiest way to do this? Please explain in detail as I have almost no knowledge regarding Numbers. Thanks.

    You can construct a Line graph or a Scatter graph to display this.
    The two are similar, but require the data to be set up differently.
    A Line graph is a Category graph.
    Each 'date' is a text value that names a category. The categories are equally spaced along the category axis. Measurements taken on day 1, day 2 and day 4 would be equally spaced with respect to the category axis.
    Each temperature reading is a numerical value, and is represented on the graph by the distance it is placed from (and usually above) the category axis.
    A Scatter graph has two value axes.
    Each Date is a Date and Time value. The position of these values depends on the value itself. Measurements taken on February 1, February 2 and February 4 wound not be equally spaced. Along the Date axis, the space between the second and third dates would be twice as wide as that between the first and second cates.
    Each temperature reading is a numerical value, and is represented on the graph in the same manner as in the Line graph.
    Here's an example of each, using the same data set.
    For the Line graph (left), the Category labels (dates) are placed in a Header column, and the temperatures in a non-header column,
    For the Scatter graph, both the dates and the temperatures are in non-header columns. The Chart Inspector was used to Connect the data points with straight line segments, and the weight of these lines (and size of the data point markers) was increased to more closely match the weights and sizes in the Line graph.
    Data on the graphs is not intended to have any similarity to temperatures measured for your purposes.
    The construct the line graph:
    Set up the data and labels as described.
    Select the cells containing the data (column B in my case).
    Click the Chart button and choose the Line Chart.
    To construct the scatter chart:
    Set up the data as described.
    Select the cells containing the date and temperature data (columns A and B for mine)
    Click the Chart button, and select the Scatter Chart button (third from the bottom),
    In the Chart inspector, click the Series button, then set the Connection Points menu to Straight. Change the Data Point size yo 15.
    Click anywhere on the line to select it, then in the Stroke section of the Format bar, set the line weight to 4 points.
    Click on the box containing the dates (under the chart), then click the ruler icon in the Inspector to show the metrics inspector. Use the Rotate control to set the angle for the dates to about 75°.
    Click on the label for this axis (Dates) and drag it to a position below the date labels.
    Regards,
    Barry

  • Plot values in X-Axis in 2D line graph

    Hi,
    I am using 2D line graph to plot graph but the graph is to be ploted based on date i.e i have a range to be ploted in X-Axis i.e Dates how to plot that please suggest now the values are automatically it is getting ploted
    This is query wht i am using
    SELECT
    pobj.name "Object Name",
    tas.name "Task Name",
    SUM (TCL.NUM_HOURS_DAY1+TCL.NUM_HOURS_DAY2+TCL.NUM_HOURS_DAY3+TCL.NUM_HOURS_DAY4+TCL.NUM_HOURS_DAY5+TCL.NUM_HOURS_DAY6+TCL.NUM_HOURS_DAY7) ) "Effort"
    FROM
    timecard_lines tcl,
    project_objects pobj,
    tasks tas,
    projects pro,
    timecard_headers thr,
    employees epl,
    object_task_estimate ote,
    TIMECARD_PERIODS TP
    WHERE
    pro.id = :P61_PROJECTS and
    tas.id = :P61_TASKS and
    TP.ID = THR.TPD_ID AND
    tcl.pobj_id = pobj.id AND
    tcl.tas_id = tas.id AND
    pro.id = pobj.pro_id AND
    thr.id = tcl.thr_id AND
    thr.emp_id = epl.id AND
    ote.tas_id = tas.id AND
    pobj.id = tcl.pobj_id
    and
    ote.pobj_id = pobj.id and
    pro.id in
    (SELECT pro.id
    FROM projects pro, employee_project_pairs
    epp, project_employee_roles per ,employees empl
    WHERE empl.id = epp.emp_id
    AND pro.id = epp.pro_id
    AND epp.project_role_id = per.id )
    group by pro.project_name,pobj.name,tas.name
    order by pobj.name

    Standard syntax on the Mac is Object, Action. The order is always Select an object (in this case, part of a spreadsheet), then perform an action on or with tat object (in this case, make a chart).
    The same syntax applies to Copy or Cut (and to Paste, althyough it's not as obvious there—the object is whatever is currently on the Clipboard).
    I don't think there is information on printing charts/graphs in the online help. A chart is a graphics object, and is printed as part of the document that contains it. Printing the spreadsheet should also print the chart, provided it is on a page that contains data (AppleWorks's default is to print only the rows and columns that contain data). If you want to print the chart without any of the data, drag the chart over the data to conceal it, and choose the Print options that do not show column or row headers and the cell grid. (These are probably in the AppleWorks options in your Print dialogue, but their position will depend on your print driver.)
    Placing the object (the chart) in another document provides an easier method of printing only the chart, and the method you used (dragging the chart from the spreadsheet to the second document is a common and acceptable one. Dragging an object from one document to another places a copy of the object on the second document, and leaves the original on the original document. This is true in general, not just for charts.
    In the case of a chart, the copy is a static object, while the original maintains its live connection to the underlying spreadsheet—changing a graphed value in the spreadsheet will change the graph to match the new value, but will not affect the copy in the second document.
    Regards,
    Barry

  • Numbers Line Graph is more annoying than Miley Cyrus

    Hello and thanks for taking time to read and answer my question.  So I have a science fair project coming up and numbers is being very annoying.  My experiment is testing the affect of temperature on the effectiveness of magnets.  My table looks like this: 
    Magnet 1
    Magnet 2
    Magnet 3
    Magnet 4
    Magnet 5
    Average
    74 Degrees
    40g
    42g
    50g
    27g
    38g
    39.4
    200 Degrees
    28g
    25g
    35g
    46g
    38g
    34.4
    250 Degrees
    62g
    39g
    10g
    53g
    29g
    38.6
    300 Degrees
    34g
    19g
    36g
    23g
    41g
    30.6
    350 Degrees
    26g
    21g
    17g
    36g
    37g
    27.4
    All I want to do is make a simple line graph that will show the correlation (or lack of one) However, when I try to make it into a graph, I keep either getting no lines at all or only the line for the average.  Why is this?  What am I doing wrong?  Help is greatly appreciated.
    Thanks so much,
    Colton
    I'm using numbers 3.1 by the way.

    Hi Colton,
    "I keep either getting no lines at all or only the line for the average.  Why is this? "
    It's because the column labeled Average is the only one containing numbers. Appending the g or " Degrees" forces Numbers to regard the values in the other columns as Text, which has no numerical value, and can't be graphed.
    With the text stripped from those numerical values you can produce either of these two graphs. See the notes below regrding the major differences.
    Scatter chart with connected points
    Line chart
    Cosmetically, the line graph appears with thicker lines connecting the data points, and with all symbols set to open circles. I thickened the connecting lines on the scatter chart to make them more visible, and made the Average line about 40% thicker than the others. No changes were made to the lines on the line chart.
    The legend for both (Magnet 1, Magnet 2, etc.) appears as a horizontal line (or lines) of text. Selecting the box, then dragging either handle toward the other forces the labels into a vertical stack, which can then be moved to a visually better position.
    The main functional difference between the two types is in the purpose of the X axis.
    In the scatter chart, both X and Y axes are Value axes—the position of each data point is determined vertically by its Y value and horizontally by its X value.
    The Line chart is a Category chart. Category charts have one Value axis (here the Y axis) and one Category axis (here the X axis). Categories are equally spaced along the Category axis, and the data points' vertical position(in this example) is determined by the Y value of the point.
    In your case, the difference can be seen in the (horizontal) distance between the first two samples in each series compared to the (horizontal) distance between other ajacent pairs in the same series. In the Line chart, these distances are all the same. In the Scatter chart the first pair (74° and 200°) are more widely separated than the others (each 50° higher than the temperature before it).
    In cases where you are trying to show a relationship (or lack of relationship) between two sets of values (speed vs braking distance, temperature vs volume, etc.) a scatter chart usually gives a better representation.
    Practical note: Values must be placed in non-Header rows and columns. Labels, including Category labels, must be placed in Header Rows or Header columns to be picked up by the chart. The formatting of the pasted data in your initial post indicates the temperatures are in a Header column. The column labels are (and should be) in a Header row.
    Good luck with your project!
    Regards,
    Barry
    PS: You might want to check the meanings of "affect" and "effect" before commiting yourself to either on your display and in your report.
    PPS to Yellowbox: HI Ian. Looks like you got started earlier and/or wrote faster thn I did! Something odd happened in the example in your first post. The category labels have been offset one cata set to the right, and there's no 350.
    B

  • Change line graph color to red when negative?

    I've got a line graph charting my budget. Anyone know if there is a way to have the line be red if it is negative, and the standard blue if it is in the positive?
    I didn't see any sort of option when I briefly looked around Numbers - but I thought I'd ask.

    I believe your thinking about the "color red if negative" type thing you can do in cell formatting. I couldn't find a way of doing any kind of conditional formatting in charts. I had to use a rule to do it in cell formatting.
    If someone else knows a way, I hope they will tell us. I can't find it.
    Jason

  • 2d Flash Line Graph Issues

    Hi,
    I am editing the xml for the 2d flash line graph, and having difficulty performing some customisations.
    Could anyone assist with the following:
    1) Changing the default line colours. I have 4 series. Changing the following does not change the line colours:
    <line_chart left_space="5" right_space="5">
    <block_names enabled="no" />
              <dots radius="1"/>
              <lines size="1" auto_color="no" color="blue"></lines>
              <lines size="1" auto_color="no" color="red"></lines>
              <lines size="1" auto_color="no" color="green"></lines>
              <lines size="1" auto_color="no" color="pink"></lines>
    </line_chart>
    2) Is there any way to add commas (thousands) to the Y axis labels?
    Many thanks for any assistance with these
    Steve

    Hi Ben,
    Yes I was looking at that, but just discovered that I can do the following:
    <values show="no" thousand_separator="," />
    and it seems to do it.
    I am now having REAL issues with the X and Y axis formatting. I am including font nodes inside the y_axis / x_axis nodes (as per anychart 3 docs) but the formating properties are not changing the axis labeling:
    <!--
    <y_axis name="Water Injected (&P320_UNITS.)" smart="yes" direction="horizontal" rotation="-90" position="left_center" >
    <font size="20" type="Verdana" color="" bold="" italic="" underline="" align="left"/>
    </y_axis>
    <x_axis name="" smart="no" direction="horizontal" rotation="-90" position="top">
    <font size="20" type="Verdana" color="" bold="" italic="" underline="" align="left"/>
    </x_axis>
    -->
    do you have any experience with doing this?
    thanks again
    Edited by: Steve_Macleod on May 14, 2009 3:18 PM

  • How to show a one line in line graph in 2 colors?

    I need to create a line graph which shows the data which is forecasted to the future.
    Ex. Today is 8/10/2006.
    Start and end dates for graph are 8/1/06 thru 8/20/06.
    The line graph need to show in red color till 8/10/2006 and from 8/11/06 thru 8/20/2006, the line need to be in blue color. Is there any option to show the graph like this?
    Or are there any alternative ways to show the graph which separates out data in 2 colors conditionally?
    Thanks for ur inputs.

    I think i donot get your point correctly.
    I wrote query like
    select dept, date, act, fst
    from..
    where..
    The data is coming properly like
    Dept Date Actual Forecast
    1      1 12 null
    1      2 11 null
    1      3 14 null
    1      4 15 null
    1      5 14 null
    1      6 null 14
    1      7 null 14
    1      8 null 15
    1      9 null 15
    1      10 null 15
    2      1 20 null
    2      2 17 null
    2      3 13 null
    2      4 15 null
    2      5 14 null
    2      6 null 14
    2      7 null 15
    2      8 null 19
    2      9 null 13
    2      10 null 13
    3      1 19 null
    3      2 14 null
    3      3 14 null
    3      4 13 null
    3      5 14 null
    3      6 null 14
    3      7 null 14
    3      8 null 18
    3      9 null 18
    3      10 null 18
    Next i plotted the line graph selecting "category" as date and dept.
    and Data as Act and Fst.
    In layout tab, Lines were dept
    and group is date.
    And the graph.xml is
    <rw:graph id="CT_2" src="G_dpt_id" groups="period_start_date" series="dpt_name" dataValues="act,fct">
    <!--
    <?xml version="1.0" ?>
    <Graph version="3.2.0.22" markerDisplayed="false" graphType="LINE_VERT_ABS">
    <LegendArea automaticPlacement="AP_NEVER" position="LAP_BOTTOM"/>
    <SeriesItems>
    <Series id="1" color="#ff6666"/>
    </SeriesItems>
    </Graph>
    -->
    </rw:graph>
    But, the graph is not plotting properly. It is showing just as "Series" and "Groups" without showing actual Series and Group values on the axes.
    Do i need to pivot this query to look like what you posted to show the graph correctly?
    Thanks for helping me with this.

  • How can i dynamically vary the color of one graph line

    I was looking on the developer zone and noticed several people are looking for a way to change the color of one graph line. Simplest case I would like to know: a graph is running, then you press a button and from that point on the color of the graph changes, but doesnt change the old data line color. THis way the line will consist of different colors.
    The property node changes the whole line, and the line is always just one color. It should be possible to make the line consist of different color sections, anyone know how?

    The application is actually not as slow as it seemed, i had some settings set wrong (anti aliasing in plot, and some functions in advanced, when you right click on the graph)
    Especially unchecking the anti-aliasing makes it much faster
    Also, just plotting point and not a line, or alternatively, changing the interpolation makes it faster.
    Anyway, the attached files do not rely on processor so much anymore, see for yourself
    Attachments:
    multicolor_looking_plot.vi ‏99 KB
    multicolor_looking_plot_2.vi ‏105 KB
    multicolor_looking_plot_3_truncated_array.vi ‏99 KB

  • How to draw cumulative line graph over the stacked bar chart?(SSRS)

    Hello, 
    I need your help to draw a cumulative line graph over this bar chart. 
    I need your help to draw a cumulative line graph over this bar chart in SSRS.
    The dimension (Category Group) is "Hour" in this case. and expression is sum of two distinct values like 'Y' and 'N' in Activity column(Series Groups). The sum(Activity=Y) in green color and sum(Activity='N') in Red color.
    I require to draw a cumulative line graph in this same chart, that should give the result of cumulative Sum(Activity) for each hour?? I mean sum of (Y+N) for each hour and that should be cumulative over the hour.
    I mean sum of (Y+N) for each hour and that should be cumulative over the hour.
    SSRS Version details:
    Microsoft SQL Server Reporting Services Designers 
    Version 10.50.1600.1
    --Siva

    Hi Siva,
    It seems that you need to verify your email address to post images, etc
    Besides,  Microsoft® SQL Server™ 2008 Reporting Services: Step by Step is a good choice to you. With STEP BY STEP, you work at your own pace through hands-on, learn-by-doing exercises. A companion CD includes data sets and sample code. You can download
    it from this link http://my.safaribooksonline.com/9780735626041 Click the Extras, you can get the samples and database from Supplemental Content.
    And there are vast of valuable articles and SQL Server Reporting Services Books Online in MSDN ,you can click these link to begin your learning journey, SQL Server Reporting Services 2008 Books Online:
    http://msdn.microsoft.com/en-us/library/ms159106(v=SQL.100).aspx 
    Besides these, there are still many valuable videos in Microsoft Webcast, click this link
    https://msevents.microsoft.com/cui/SearchDisplay.aspx?culture=en-US#culture=en-US;eventType=0;sortKey=;sortOrder=;pageEvent=false;hdnInitialCount=;searchcontrol=yes;kwdAny=Reporting%20service to register with a windows live ID, then download the ones you
    want.
    Hope this helps.
    Regards,
    Charlie Liao
    TechNet Community Support

Maybe you are looking for

  • My videos won't play in my itunes

    my videos won't play in my itunes- just blank and no sound but running like it was playing something

  • Oracle 9i Sql tunning

    HI all, Is there any command line method in oracle 9i which suggest optimizations for a sql query like tunning advisor in 10g. I want to know a command line method not the oracle management Server Thanks Lbn

  • Multiple SQL statements in Init SQL in WLS 8.1

    How to seperate multiple SQL statements in Init SQL text box ? For example, I want to enter following two SQL statements. How do I seperate them. I tested with / and ; as seperator, but did not worked.. alter session set nls_date_format = 'MM/DD/YYYY

  • 10Gig (tengigabit) CRC Errors between N5K500 and 3750X

    Dear Forum, We have an issue with a 10 Gig connection between a Nexus 5548 and a 3750X 10Gig. There is also a HSRP group running over this link with aggressive timeouts which recently behaves somewhat unstable. We noticed a bunch of CRC errors on thi

  • Embed a pdf?

    Hello, I would like to link to a pdf - but instead of opening up full screen and a new browser - is there way to open it up so it stay embedded with in the portlet? I want to constrain the size to the layout - so for a 3 column layout, with the pdf i