Drawing on Line chart

Hi
how can I draw a line connecting top of each line series in
the chart with multiple axis. Screenshot link below.
Screenshot

You could use the DataDrawingCanvas component found on
www.quietlyscheming.com
just make sure you get the source download for the DDC and
The bulk download from the site
There are some components needed by the DDC

Similar Messages

  • Drawing 2d line chart problem, urgent please!!!

    Hello,
    can anyone help me with the function GRAPH_MATRIX_2D please,
    i couldn't draw a line graph with three data series, i mean with three lines in the graph.
    i want to the chart to be drawn as line graph at the beginning, i shouldn't have to change the chart type later,
    can anybody send me a sample code that does what i want.
    i am expecting your answers,
    thanks.

    Hi,
    have you checked the two reports Matthias mentioned?
    After downloading the SAP Chart Designer the general procedure should look like: create your chart settings interactively using the designer. Save these settings as a local XML file. Use this XML in your ABAP application and additionally create a data XML at runtime (the format is described in the pdf of the SAP Chart Designer zip).
    Regards, Kai
    PS: Please don't use these very outdated function modules graph_matrix* / grstat* in new projects!

  • Drawing a Line Chart

    Hello ,
    i'm using line type "  line chart with markers at data points " to draw 2 values
    - the start date on "X" axis
    - Original Value on "Y" axis
    my problem is when i put the "Start date " on the (on change of )area in data section , and put" original value "in the (show values )section , the original value got counted , and i don't wanna to count the values i want to use the values as it's , also Don't summarize check box is dimmed and i  dont wanna how to solve this trivial issue 
    can anyone help please ,

    "LittleMuscle" <[email protected]> wrote in
    message
    news:g7i93j$dqk$[email protected]..
    > Is there a way to draw a horizontal line straight across
    a chart, say a
    > column chart. I want the line to extend all the way from
    the y-axis to
    > the far right of the chart.
    http://www.quietlyscheming.com/blog/charts/easy-custom-charts/

  • Drawing dashed line or dotted line in a flex line chart

    Friends,
    I want to draw a line chart which should be either dotted or dashed.
    since there is no component like dashed line chart, can anyone help me in creating one.
    i think if i extend the line series component, then i can draw that.
    but am stuck there. pls help people.
    Regards,
    Anoop

    Try looking [url http://www.macdevcenter.com/pub/a/mac/2002/03/22/vertical_text.html]here.
    : jay

  • How to draw a simple line chart using GRAPH_MATRIX_2D function

    Hello,
    can anyone help me with that function please,
    i couldn't draw a line graph with three data series, i mean with three lines in the graph.
    i want to the chart to be drawn as line graph at the beginning, i shouldn't have to change the chart type later,
    can anybody send me a sample code that does what i want.
    i am expecting your answers,
    thanks.
    Note: all answers will be pointed.

    Hi Ali,
    please refer to my reply [here|Re: drawing 2d line chart problem, urgent please!!!] and skip this thread. This is a copy of the other request.
    Regards
    Matthias

  • Can't seem to draw a chart (line chart) using dates rather than numbers

    I'm trying to draw a Line Chart but rather using numbers i want to use dates for example: Switzerland 23/06/2008 - 23/08/2008. Can't seem to get it to work? it seems to all go wrong when I change the cell format to 'date'
    Can anyone help?
    Thanks
    PS. I can do it easily in Excel

    Hello
    From my point of view, it's not surprising.
    In XL, a date is a number to which a date format is applied. So, it may be charted.
    Same thing with the good old AppleWorks.
    With Numbers, a date is NOT a number, it IS a specific class of data.
    The consequence is that it can't be charted directly.
    Happily, we may easily convert a date into a number.
    In column B the formula is
    =A-$A$1
    which calculates the numeric difference between stored dates and the date stored in A1.
    So, we may chart the results.
    I know that it's far from perfect but we have to live with the choices made by Numbers's designers.
    Yvan KOENIG (from FRANCE vendredi 18 avril 2008 18:44:14)

  • Please help me to draw a special line Chart!

    Hi, I am programming to draw a line chart with X-axis as timepoint (for example, t1, t2, t3, t4, ...) and Y-axis as values (v1, v2, v3,v4,...) and have a line connecting all the (t, v) point. The issue I have encountered is that when a value (for example, v3) is missing at the timepont(t3), I still want the timepoint to show on X-axis but the connectiong line to stop at (t2, v2) and start again at (t4, v4). Is it possible to draw such a line chart? Is there any 3rd party supporting it? If so, may you please give me hints and help me out of this? Thanks alot.

    I did find this:
    import java.awt.event.*;
    import java.awt.*;
    public class Pxy extends Frame 
    public Pxy()
         addWindowListener(new WindowAdapter()
        {     public void windowClosing(WindowEvent ev)
              {     dispose();
                   System.exit(0);}});
         setBounds(1,1,670,450);
         txy pan = new txy();
         add(pan);     
         setVisible(true);
    public class txy extends Panel
         int xt[] = {1,1,1,0,1,1,1,1,0,1,1,1,1,0,1,1};
         int yv[] = {40,15,30,90,105,128,120,98,199,250,269,203,90,210,200,145};
         int sx = 40;
         int sy = 30;
    public txy()
         super();
         setBackground(Color.pink);
    public void paint(Graphics g)
         g.setColor(Color.white);
         for (int i=0; i < 21; i++)
              g.setColor(Color.white);
              g.drawLine(i*30+sx,sy,i*30+sx,sy*10);
              g.setColor(Color.blue);
              g.drawString(""+i*30,i*sy+sy+2,30*10+30/2);
         for (int i=0; i < 10; i++)
              g.setColor(Color.lightGray);
              g.drawLine(sx,i*30+sy,20*30+sx,i*30+sy);
              g.setColor(Color.blue);
              g.drawString(""+i*30,10,i*sy+sy+2);
         g.setColor(Color.black);
         for (int i=0; i < xt.length-1; i++)
              if (xt[ i ] == 1)
              g.drawLine(i*30+sx,yv[ i ]+sy,(i+1)*30+sx,yv[ i+1 ]+sy);
    public void update(Graphics g)
         paint(g);
    public static void main(String[] args )
         new Pxy();

  • JDEV 10G: how to display the value of the line chart using jChart in JSP

    I have draw the line chart in JSP using the JChart and now I wan to display the value label in the line there..
    but the value wasn't show..
    anyone can help me..
    thx..

    Hi,
    what I do understand, you want to display the value of each point in your Line Graph.
    I guess you will be having BIGraph.xml file. In this file check the "Show Data Tips When Mouse is over bars" checkbox.
    Lets try with this.
    --Abhijit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Line chart with different length series?

    Hello,
    I would like to draw a line chart with three different series.
    1. Previous year
    2. Current year (until now)
    3. Estimate (2 months)
    I've got 12 values for the previous year, 4 values for the current year (January to April) and 2 estimated values for May and June.
    When I define the three series, each is stretched over the whole width of the chart. How can I avoid that and force for instance the April values to be displayed above each other? Is it possible at all with this type of chart? (In Excel, it's quite easy...)
    Thanks for any help!
    Sabine

    Hi,
    You’ll have to write a query for your series 2 and 3 that has the same number of data points as your series 1 query, in your example that would be 12. Line series charts are always stretched over the full width by design. The months for which you have no data, would have a value of NULL. Please note that there is one issue, which has been fixed in 2.2, that causes the charting engine to only render dots instead of lines for series 2, 3, …, if they have a NULL value at the last data point. So if I understand your requirements correctly, you should try this on our 2.2 hosted beta instance, and then upgrade to 2.2 when it comes out.
    Regards,
    Marc

  • Drawing TrendLines in Line Chart

    Hi,
    I am using a Line Chart in one of my projects.
    I use a HTTPService to fetch XML Data to feed the chart.
    <mx:HTTPService id="myServ" url="ChartData.xml" result="myResultHandler(event)"/>
    I draw two trend lines over the chart based on the max & min values for a specified node in the XML data
    <?xml version="1.0" encoding="utf-8"?>
    <nodes>
        <node month="Jan-10">
           <expenses>20</expenses>       
        </node>
        <node month="Feb-10">
           <expenses>30</expenses>       
        </node>
        <node month="Mar-10">
            <expenses>80</expenses>       
        </node>
        <node month="Mar-10">
            <expenses>20</expenses>       
        </node>
    </nodes>
    I use the expense node in determining the max & min value for the chart.
    I determine the max & min values & draw the lines in the result handler function:
    If i use result Format = "e4x", I am able to iterate the data as XML List Collection, but when I get the data as ActionScript objects, I am not able to iterate the XML data.
    public function drawLine(event:Event):void
         myChartCanvas.clear();
         myChartCanvas.lineStyle(2, 0x000000, 1);
         myChartCanvas.moveTo('Jan-10', 50);
         myChartCanvas.lineTo('Aug-10', 70);
    How can i iterate the nodes in AS3 object format to find the max & min nodes & draw the trend lines ?
    - Sen

    Cast the Objects. You know they are XML behind the scenes.

  • I wanna draw line chart

    hi, i wanna draw line chart for some analysis of an image.
    how can i do that?? plz help me in that, code would be more
    better.thank u.

    Yes, you can use the code for free and you can include it in your application for free. JFreeChart is and will always be free software.
    What's not free is the JFreeChart Developer Guide (a 300 page Acrobat PDF document) and access to the JFreeChart Priority Support Forum. You have to pay for these, if you want them, the idea being that a well-funded project will progress faster than one that relies solely on volunteers.
    I get some criticism for taking this "commercial" approach, but I am 100% certain that it has made JFreeChart a better product, so I don't care...
    Regards,
    Dave Gilbert
    JFreeChart Project Leader

  • How to draw a line on chart

    Hi all,
    I am working on a chart in Design studio on BI platform. The following screen
    shot will depict the current state of my chart-
    Now
    I need to draw lines of different lengths and colors with certain distance from
    X-axis, as shown below. (I drew those lines on a screen shot of my chart with
    the help of MS paint
    but
    I need to do this with the help of design studio) . Basically I need help to
    get the following output in design studio. So, question is HOW TO DRAW A LINE
    IN DESIGN STUDIO?
    Kindly,
    help with this.
    Please suggest me to get the output.
    Thanks and Regards.
    Rakesh.

    Hi Tammy,
    Thanks for ur reply.
    I'm using DS 1.3. and no need of dynamic changes of line on chart.
    I just now gone through with CSS, but i didnt get the solution. i think somewhere im getting stuck with CSS.
    Can u please suggest me the step by step procedure to draw a line using CSS.
    Kindly help on this.
    Thanks and Regards,
    Rakesh

  • How to draw Line Chart in SAP?

    There is a request that the customer want to see Line Chart in the report.
    Is it possible to do it using abap?
    Thank you very much.

    Hi,
    Yes it is possible.
    GOto Tcode SE83>Expand graphics node>double click on that
    you will get all graphic programs.

  • Line Chart in Actionscript

    <Data>
                <Brand BName='ICICI Bank' MainId='276439c0a2e886311a426147'>
                    <Name Main='(author unknown)' Count='305' />
                    <Name Main='intellibitz' Count='30' />
                    <Name Main='bankcodes' Count='25' />
                    <Name Main='info2india' Count='24' />
                    <Name Main='amitkarnani' Count='9' />
                </Brand>
                <Brand BName='Yes Bank' MainId='276439cd8a4514807d7180d0'>
                    <Name Main='(author unknown)' Count='32' />
                    <Name Main='STOCKSTIPS' Count='5' />
                    <Name Main='stockezymobile' Count='4' />
                    <Name Main='Intraday Ideas' Count='4' />
                    <Name Main='Infopiper' Count='3' />
                </Brand>
            </Data>
    This is my xml data.It can bo vary as per data changes.but i need to draw linechart by using actionscript.In this case draw two line .But if Brand will increases
    the a line is automatically increase.
    PLease help me for making a line chart.....
    please reply anybody

    You should learn
    - how to load an XML file (URLLoader class)
    - read XML data (XML class)
    - draw lines (graphics class)

  • Displaying regression line slope on line chart

    Post Author: Derk_Niblick
    CA Forum: Charts and Graphs
    I've been having some difficulty building a chart. I'm trying to plot two different series onto a chart. A scatterchart is ideally what I am looking to use, but I cannot get the trendlines to work (I can't get the two different values into one series). I tried putting it into a line chart and while it's not working exactly how I would like it to, the trendlines work with it. However, I cannot calculate the slope of that line. I can view the formula (the linear trendline formula is in the standard y=mx+b type format), but i'm looking for the actual numeric slope value (y2-y1/x2-x1 for all you mathmatically inclinde folk).  If I could get the program to give me two points on that line I can write a formula to calculate the actual slope of the line. Ultimately, I would like to chart the two different series (for example x = one value and y= another value giving me that precise location on the chart), draw a trendline through the points, and give a slope value. Can someone at least point me in the right direction.

    Hello Kai,
    I would like work on SAP Chart Designer tool. Could you provide me any information how to use and the steps to download this tool from SDN.
    I did not find this SAP Chart Designer tool in the SDN downloads.
    Could you please proive me the path or the steps to do this.
    Please do the needful.
    Thanks in advance!!!
    Regards
    Prasad

Maybe you are looking for

  • Problems with string codification under unix

    Hi people, I'm trying to insert Latin caracters as � or � in a string, and trying to insert them into an excel page. Everything goes fine, untl those latin caracters are inserted. They are shown as a question mark (?). I tryed using a charset set to

  • Skype keeps crashing after taking too much memory

    Hello, So my version of skype client is 7.3.0.101 and it doesn't stop crashing since a few months now. Here's precisely what happens : I launch it, it's pretty slow since the problem the problem appeared but something like 30 after it crashes. We can

  • CF8 jrun.exe memory usage

    Hello- Thanks in advance. I've installed an eval version of CF8 on my (future) production server running Windows 2003 Server Standard. I've noticed jrun.exe is using about 160+MB of RAM. That seems high to me, so I installed it on my development mach

  • Harddrive noise on a week old 120 classic

    So I got the 120GB classic about a week ago, and noticed tonight the harddrive is making a kind of clicking noise when songs are being played. I noticed it when the iPod was connected to my computer and I was listening through itunes. Anyone have a d

  • Is there a driver for cannon selphy

    Is there software available for a connon cp900 printer?