Animated line graph control?

Can anyone tell me what vendor provides an animated line
graph control like on farecast.com?
Please see the following site and click on the "Graph" tab:
farecast.com Line
Graph Control
Thanks!
Chirag

i would try to achieve this with tweened mask.
first, draw the complete line on a layer above the JPG.
then on a layer just above the line, draw a rectangle that
covers it completely. convert it too a symbol (F8.) Right clicl on
the layer and set this layer to Mask.
Add enough frames to all layers for your desired animation
length.
On the Mask layer, add a key frame at the last frame.
On the Mask layer, on the first frame, scale the mask
rectangle Horizontally so that it only masks the first part of your
line.
Right click on the Mask layer and Create Motion tween. you
may have to adjust the Center poitn of your recangle mask (the
small white dot) to get it to scale up correctly.
you should see the rectangle scale out to cover the whole
line as the animation plays.
With both Mask and Line layers Locked, you should see the
mask reveal the line over time.

Similar Messages

  • 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();

  • Creating multiple Line Graph having common values..

    Hi...
    I've created one application process for creating Multiple Line Graph.
    And i've integreted two tables in this graph, where values may be common for both the tables. In this case, for common values, instead of getting overlapped I'm getting scattered graph(its totally abnormal). Please help me if you 've any idea about this issue.....?
    Please go through the App Process and the output of the SQL query.
    In output of the query, in the NAME column "Feb-2010" is common.
    This is the SQL query OUTPUT:_
    TABLE 1
    NAME VALUE
    Sept-2009 100
    Oct-2009 95
    Nov-2009 98
    Feb-2010 97
    TABLE 2
    NAME VALUE
    Jan-2010 93
    Feb-2010 100
    Mar-2010 98
    Application Process :_
    DECLARE
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    OWA_UTIL.http_header_close;
    HTP.p ('<?xml version = "1.0" encoding="utf-8" standalone = "yes"?>');
    HTP.p ('<anychart>');
    HTP.p ('<settings>');
    HTP.p ('<animation enabled="True"/>');
    HTP.p ('</settings>');
    HTP.p ('<charts>');
    HTP.p ('<chart plot_type="CategorizedVertical">');
    HTP.p ('<data_plot_settings default_series_type="Line">');
    HTP.p ('<line_series>');
    HTP.p ('<marker_settings>');
    HTP.p ('<marker type="None" />');
    HTP.p ('<states>');
    HTP.p ('<hover>');
    HTP.p ('<marker type="Diamond" />');
    HTP.p ('</hover>');
    HTP.p ('</states>');
    HTP.p ('</marker_settings>');
    HTP.p ('<tooltip_settings enabled="True">');
    HTP.p ('<format>Year {%Name}{enabled:false} {%SeriesName} - {%Value}{numDecimals:0}%</format>');
    HTP.p ('</tooltip_settings>');
    HTP.p ('<effects enabled="True">');
    HTP.p ('<drop_shadow enabled="False" />');
    HTP.p ('<bevel enabled="true" distance="1" blur_x="2" blur_y="2" />');
    HTP.p ('</effects>');
    HTP.p ('<line_style>');
    HTP.p ('<line thickness="3" /> ');
    HTP.p ('</line_style>');
    HTP.p ('</line_series>');
    HTP.p ('</data_plot_settings>');
    HTP.p ('<chart_settings>');
    HTP.p ('<title enabled="true">');
    HTP.p ('<text>Avg. %App. Uptime per month </text>');
    HTP.p ('</title>');
    HTP.p ('<axes>');
    HTP.p ('<y_axis>');
    HTP.p ('<title>');
    HTP.p ('<text>Value</text> ');
    HTP.p ('</title>');
    HTP.p ('<scale minimum="90" maximum="101" major_interval="1" />');
    HTP.p ('<labels>');
    HTP.p ('<format>${%Value}{numDecimals:0}</format>');
    HTP.p ('</labels>');
    HTP.p ('<axis_markers>');
    HTP.p ('</axis_markers>');
    HTP.p ('</y_axis>');
    HTP.p ('<x_axis tickmarks_placement="Center">');
    HTP.p ('<title enabled="False" /> ');
    HTP.p ('</x_axis>');
    HTP.p (' </axes>');
    HTP.p ('</chart_settings>');
    HTP.p ('<data>');
    FOR ObjRecord IN (select DISTINCT(K_OBJECT.OBJECT_ID) as OBJECT_ID,name from K_OBJECT, K_OBJ_TYPE_ASP_REL where K_OBJECT.OBJECT_ID=K_OBJ_TYPE_ASP_REL.OBJECT_ID and K_OBJ_TYPE_ASP_REL.OBJECT_TYPE_ID=1)
    LOOP
    HTP.p ('<series name="'|| ObjRecord.name ||'">');
    FOR MonthlyValueRecord IN (select NAME,VALUE
    from K_REPORT_RUN,K_ASPECT_VALUES,K_ASP_TIM_RPT_REL
    where K_REPORT_RUN.RUN_ID=K_ASP_TIM_RPT_REL.RUN_ID
    and
    K_ASPECT_VALUES.ASPECT_VALUE_ID=K_ASP_TIM_RPT_REL.ASPECT_VALUE_ID
    and
    K_ASP_TIM_RPT_REL.ASPECT_ID=1
    and
    K_ASP_TIM_RPT_REL.OBJECT_ID=ObjRecord.OBJECT_ID
    order by K_REPORT_RUN.STARTTIME)
    LOOP
    HTP.p ('<point name="'|| MonthlyValueRecord.name ||'" y="'|| MonthlyValueRecord.value ||'" />');
    END LOOP;
    HTP.p ('</series>');
    END LOOP;
    HTP.p ('</data>');
    HTP.p ('</chart>');
    HTP.p ('</charts>');
    HTP.p ('</anychart>');
    htmldb_application.g_unrecoverable_error := true;
    END;
    Edited by: user12873839 on Apr 9, 2010 3:58 AM
    Edited by: user12873839 on Apr 9, 2010 4:02 AM
    Edited by: user12873839 on Apr 9, 2010 8:00 AM

    >
    Help Needed Urgent.....
    >
    That is one surefire way to not get any help and certainly not urgently. I suggest that you amend the title of your post to something that reflects the actual issue. This will also help anyone with similar issues to find the thread.
    When posting code please put {noformat}{noformat} (with the curly brackets and the word code in lower case) above and below it to preserve formatting like this...
    {noformat}{noformat}
    SELECT *
    FROM emp
    {noformat}{noformat}
    This will be displayed on the forum like this...SELECT *
    FROM emp
    Cheers
    Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Oracle reports - Line graph

    Hello,
    I have a few issues with the line graphs (using oracle 10g dev suite R1 - 9.0.4).
    1. Unable to make my y axis - a dotted line.
    2. Since I couldn't make the y axis a dotted line, I made it a thin line. This thin line looks fine when I run it from the oracle reports builder. but when I genenerate to a PDF file, this thin line becomes thicker.
    3. Thirdly, I want to place a dot or something wherever the value changes in the line graph. One option is to add the MarkerText visible="true" to the Graph settings xml file. but this puts the marker text to all the y axes.
    I want it only for 1 y axis.
    Cheers

    Assuming you mean "series" and not "axis", you can control the style, width, and markers using the lineStyle, lineWidth, and markerShape attributes of the <Series> element (in the XML shown in the Graph Settings property) for the series (set of Y values) of interest.
    For example, to use a thin, dotted line with circle markers on the first series, but leave the other series with their defaults, you might:
    1. Make sure the markerDisplayed attribute of the <Graph> element is set to ="true". Otherwise, no markers will be displayed.
    2. For the <Series> element with the id attribute equal to "0" (which identifies the first series), set the lineStyle attribute to "LS_DOTTED", the lineWidth attribute to "1" (in pixels), and the makerShape attribute to "MS_CIRCLE".
    3. If needed, set the markerShape attribute of the other <Series> elements to "MS_NONE".
    The Graph Settings property might look something like this:
    <rw:graph id="CT_1" src="G_YOUR_GROUP" groups="X" dataValues="Y1,Y2">
    <!--
    <?xml version="1.0" ?>
    <Graph version="3.2.0.22" graphType="LINE_VERT_ABS" markerDisplayed="true">
    <SeriesItems>
    <Series id="0" lineStyle="LS_DOTTED" lineWidth="1" markerShape="MS_CIRCLE"/>
    <Series id="1" markerShape="MS_NONE"/>
    </SeriesItems>
    </Graph>
    -->
    </rw:graph>For more information, see the "Graph.dtd" file in your "%ORACLE_HOME%\jlib\bigraphbean.jar".
    Hope this helps.

  • Different shapes for symbols in line graph

    I can't figure out how to change the default square data points in a line graph.  When I try to got to Object>Graph>Marker it is greyed out.  When I click on a circle symbol and then try to go to Object>Graph>Design, it is greyed out.  I am so frustrated trying to do the simplest things in this program.  The online tutorials on how to make graphs do not seem to explain the simplest of tasks, only the difficult.  Thanks for any help!

    Do can do, see API..... You will need to create your own custom control by displaying a graphic with the rounded image. Search forum for displaying an image.

  • Drag and drop a node in the line graph

    Hello Flex experts,
      I am using line graph for the monthly data. I want to drag a node , maybe the february node down. How can i achieve it? My code as follows does not work. Will highly appreciate your help as it is urgent requirement.
    <?xml version="1.0"?><!-- charts/BasicLine.mxml --><mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script><![CDATA[ 
    import mx.controls.Alert; 
    import mx.collections.ArrayCollection; 
    import mx.core.DragSource; 
    import mx.managers.DragManager; 
    import mx.events.*; 
    import mx.containers.Canvas;
    private  
    function dragExitHandler(event:DragEvent):void {Alert.show(
    " An event exit . ");}
    private  
    function dragOverHandler(event:DragEvent):void {Alert.show(
    " An event drag . ");}
    Bindable] 
    public var expenses:ArrayCollection = new ArrayCollection([{Month:
    "Jan", Profit:2000, Expenses:1500, Amount:450},{Month:
    "Feb", Profit:1000, Expenses:200, Amount:600},{Month:
    "Mar", Profit:1500, Expenses:500, Amount:300}]);
    ]]>
    </mx:Script>
    <mx:Panel title="Line Chart">
    <mx:LineChart id="myChart" dataProvider="
    {expenses}" showDataTips="
    true"dragEnabled="
    true"dragMoveEnabled="
    true"dropEnabled="
    true"dragOver="dragOverHandler(event);"
    dragDrop="dragExitHandler(event);"
    dragExit="dragExitHandler(event);"
    >
    <mx:horizontalAxis>
    <mx:CategoryAxis dataProvider="
    {expenses}" categoryField="
    Month" 
    />
    </mx:horizontalAxis>
    <mx:series>
    <mx:LineSeries yField="
    Profit" displayName="
    Profit" 
    />
    <mx:LineSeries yField="
    Expenses" displayName="
    Expenses" 
    />
    </mx:series>
    </mx:LineChart>
    <mx:Legend dataProvider="{myChart}"/>
    </mx:Panel> 
    Best regards!
    Sandip

    did you ever figure this out? I am trying to figure this out too, and it's not easy.

  • The ability to customize line attributes in a line graph (3 series)

    Hello all,
    I have a line graph page that plots three lines (series 1, series 2, series 3).
    line 1 - upper boundary of a confidence interval
    line 2 - actual estimate
    line 3 - lower boundary of a confidence interval
    Visualize three lines running along the axis. If the estimate line dips above the upper line or below the lower line, then that would indicate a problem for us to investigate.
    It looks pretty but the end user wants the upper and lower boundaries to be 'dotted' lines instead of solid to help differentiate it from the estimate. Currently, I don't have any control over the line attributes using the built in wizard. Anybody know how I could customize the display so that lines 1 and 3 would be dotted while leaving line 2 as a solid line?
    Thanks for any help.
    James

    James -
    You are going to need to use Custom XML for this task
    This link outlines (among other things) how create a process to create XML to replace the #DATA# in the Custom XML: Re: Chart with 2 Y Axis
    In addition to this, the following link is useful in seeing how the page process can work: http://apex.oracle.com/pls/apex/f?p=36648:30:4466603909194692:::::&tz=-8:00
    Next, you will need to create a new line style in your Custom XML (not the #DATA# tag portion, but the Custom XML of the chart) Here are a couple of references that may help: http://www.anychart.com/products/anychart/docs/xmlReference/index.html and http://www.anychart.com/products/anychart/docs/users-guide/index.html
    Once you have defined a style in your custom XML, then your page process will need to make decisions about what style to use and apply the correct style to the appropriate lines.
    I know this process is quite confusing at the beginning, however, with a little practice, it becomes much easier.
    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

  • Graph control causes general protection fault when changing axis range (64bit)

    Hello,
    i wrote a 32bit application which i'm porting to 64bit now and stumbled across a problem with the graph control.
    The Graph axsis are set to editable so that the user can change the axis range manually at runtime. The 32bit version has no problem here, but the 64bit  version is crashing  with a general protection fault at the source line with RunUserInterface().
    Is there a compiler option/value or something i should be aware of when swithing to 64bit that should be set?
    Or is this just a problem with the code of the control?
    I tried it with LabWindows v13.0.2 (278)  and v13.0.1, running under Windows 7 64bit.
    Thanks.

    Hello, danouj!
    Thank you for reporting this issue to us!
    However, information you provided is still unsufficient for us to determine the background of this bug.
    Please also provide the following details, so that we can identify the issue and investigate whether a workaround for this problem exists:
    From my understanding, when porting the application to 64-bit, you also performed some code changes to your CVI application. What are these code changes?
    If you run the 64-bit version of your application without these code changes, does the application also crash?
    What is the address of this crash?
    It would also be very useful, if you can send us a copy of a minimal snapshot of your project application, in which the problem still occurs, for us to investigate the issue.
    You can upload the sources at ftp://ftp.natinst.com/incoming
    Best regards,
    - Johannes

  • Graph control right-hand Y-axis tick marks look like negative signs

    Hi,
    The graph control right-hand Y-axis tick marks just to the left of the numeric values that make up the scale look like negative signs.  It gets confusing for the user of the software.
    The left Y-axis is OK because the little tick marks are to the right of the number.
    Any ideas on how to improve this situation?
    Thanks,
    Kirk Mitchell
    Project Engineer
    Kollmorgen

    Perry,
    First of all thanks for looking at this.
    The tick-marks controlled by the "Mark Origin" option are not the tick marks that are causing the problem.
    The Mark Origin ticks are in the body of the graph along the x=0 and y=0 lines.  They only show up if those lines are visible such as if you have a graph with an x axis range of -100 to +100 and a y axis range of the same.
    The ticks I'm referring to are just to the left of the numeric values that label the right axis.
    Below is a screenshot to illustrate:
    Any other ideas?
    Thanks,
    Kirk

  • Is it possible to delete a plot with using mouse to select it on the graph control?

    For example, when I use PlotLine to plot thousands of lines on the graph control, I want to delete some of them, but there is thousands of plotHandle generated.
    How can I get the plotHandle of the specific line on the graph control with using mouse to select it?
    If I record information of the lines, ex. the plotHandle and the coordinates, on a table or list, etc. , I have to compare the information of lines to get the plotHandle of the specific line.
    Is there any user-friendly way to delete a plot by select it on the graph control?
    Solved!
    Go to Solution.

    Sure! Look at the example located in \samples\userint\graphcursors for an example of how to accomplish this task.
    Briefly:
    The cursor must be in "Snap to point" mode
    (To be confirmed) The graph must be in "Retain" data mode
    You must have a callback for the graph control
    You can use GetGraphCursorIndex to retrieve the plot handle
    GetGrpahCursor retrieves values of cursor position in engineering units
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • ADF11g: dvt, line graph x-axis (o1 axis) display issue

    Hi,
    In our application we are generating line graphs for a set of data.
    This graph is plotted in between 2 sets of numeric values. (one plotted on x-axis and other on y-axis).
    For better accuracy of plotted graph we are using these numeric values upto 7 decimal places. (for example 8.1234567)
    Now when graph is plotted, then on x-axis (that is o1- axis in case of Line Graph) the tick labels are showing upto 7 decimal places.
    Is there any way so that I could control the display of these tick labels to 1 decimal place instead of 7 decimal places?
    More Info:
    ++The tick labels for x and y axis are generated at runtime by some calculation logic.++
    ++If we set the tick labels for x axis to 1 decimal place instead of 7 decimal places when they are generated , then this will lead to build in accurate graphs.++
    ++So we can't control the decimal format of tick labels when they are generated. We need to control it when they are displayed.++
    Please help...
    Thanks and Regards
    Manav Ratra

    Hi Frank,
    this is not working :( . It holds good for the case where one has to display markers (tick labels) on the lines of line graph and not the tick labels on the axis.
    Moreover here i find out tag as *<dvt:x1Format>*
    where as line graphs does not support x1axis they have o1axis .
    In my case I need to control display of tick labels on the o1axis.
    Regards
    Manav Ratra

  • 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.

  • Line graph parent table child

    i have a page where i have a line graph as parent and a table as its child. i want to have a master detail relationship through a view link of cardinality 1 to many.
    when user selects appropriate points of line graph, the child table should refresh accordingly.
    child table shows only children of firts record of line graph.
    is there a problem with line graph being a parent. i could find examples which used bar / pie graph but not line graph. although i had checked the checkbox while creating graph.
    i am using bind variables for both parent and child VO.
    do i need to execute child VO query again to be able to display corresponding children for a parent on a line graph.
    jdev 11 1 1 5

    Hi,
    when you create a line graph by dragging a collection (View Object) from the Data Controls panel to the page then, in the second dialog of the wizard, there is a check box "Set current row for master-detail". Check this check box and then create the table from the dependent view object. No bind variables required
    Frank

  • Data Point Symbol in Line Graph  - can you change the size?

    I would like to change the Data Point Symbols in line graphs - if not the actual symbol it would be wonderful to be able to change the size of the symbols provided.
    At present, if there is a lot of data in the graph, the symbols are too big and crowd one another.
    I know that one can reduce the line size but that doesn't change the symbol size.
    Help please.

    If I understand your question, this from the Pages online help may give the answer:
    To mark line, area, and scatter charts with data point symbols:
    Select the entire chart. You can also select the chart series (the line or area shape) that you want to mark with data point symbols.
    Click Inspector in the toolbar, and then click the Chart Inspector button.
    Click Series (except for scatter charts).
    Choose a symbol from the Data Point Symbol pop-up menu.
    Choose one of the following options from the Symbol Fill pop-up menu:
    To fill the symbol with the same color as its outline, choose Use Stroke Color.
    To fill the symbol with a solid color, choose Color Fill, click the Fill color well, and pick a color.
    To fill the symbol with a gradient, choose Gradient Fill and use the gradient controls to set the colors and change the angle of the gradient.
    To fill the symbol with an image, choose Image Fill and select the image you want. You can also resize the image by choosing an option from the pop-up menu above the Choose button.
    To fill the symbol with a tinted image, choose Tinted Image Fill and select the image you want. Click the color well to the right of the Choose button to change the tint color. You can also resize the image by choosing an option from the pop-up menu above the Choose button.

Maybe you are looking for

  • Should i put bt net protect on my mac mini

    I am new to Apple mac mini, do I need to put anti virus on, I am with BT so can get their BT Netprotect for free? Please advise.

  • Order of execution of Callable objects in an ExecutorService

    what determines the order of execution of Callable objects in an ExecutorService ? here is my test code:     ExecutorService exe = Executors.newCachedThreadPool();     Set<Callable<String>> tasks = new HashSet<Callable<String>>();     for (int i = 0;

  • Cost roll for multiple plants

    Hi, We have multiple plants where production is carried out. I need to make one plant as standard and standard costs in all other plants should reflect the same cost. One way to do that is to manually copy std cost of each material and paste in MM02

  • Start a new Document with Millimeters

    Hi there, I am new to Illustratror Scripting. I changed a Script from William Ngan, http://www.metaphorical.net and http://forums.adobe.com/message/3813716?tstart=1 It saves EPS-files instead of AI-Files. But the Units are still in PT. I want them to

  • About Trex and how to install Trex

    Hi experts i am new to Trex, what is the use of TREX how to install and configure TREX can i install in my TREX in my personal laptop on Nw 2004s Best Regards Bandla