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

Similar Messages

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

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

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

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

  • How can I hide a segment of line in Line Chart.

    Hi, All.
    I have a problem in Crystal Report. I have a database field like this:
    ID Creation Budget Actual
    1 2007-1 30 45
    2 2007-2 30 38
    3 2007-3 30 42
    4 2007-4 30 Null
    5 2007-5 30 Null
    12 2007-12 30 Null
    This database storage the info about budget and actual
    when the first month of each year, we input all the budget of the full year.
    and we input actual data every month.
    We hope our line chart can show a line about sum(budget) of the full year:
    and another segment of line indicate the actual of the summary to current month. (eg. the data of 2007, this line will hide after 2007-4, but the budget will show all 2007 sum data)
    | /budget(sum2007-12=360)
    | /
    | /
    | /
    |/-/act(sum2007-3=125)
    What should I do? Please Help!!
    Thanks.
    Seraph

    Hi, Don.
    Thank you
    It seems that you are a SAP employee, You said "If you need quick help I suggest you purchase a case on line to get a dedicated Crystal Report Designer Engineer to help you ",
    I wanna told you that It's not work. maybe Crystal Report is a good product, but it has the worst services in China. We've brought CR product, We've brought CR services. But we never get any services from their company.
    Every time we post the information to their engineer, they never give us feedback. They donno how to do it either.  They just sell product, but never know how to keep the customer's heart.
    After SAP brought BO, I ever thought that SAP,the BEST management company in the world, would give the new life to BO. the services would be better. BUT, I was wrong..IT'S THE SAME..
    I'm not aiming at one man or one company, But I really hope the services would be better. It HELPS.
    Thank you anyway.
    btw. I'm sorry for post in a wrong fourm.
    Seraph.
    Edited by: Seraph Lew on Feb 6, 2009 8:08 PM

  • 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

  • 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                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Change width of line in 2d line chart

    I have created a 2d line chart, and Numbers draws blue lines connecting my datapoints. I would like to change the width of these connecting lines, but can't seem to find anywhere to do so. The only formatting option that seems to affect these lines at all is the "Connection Lines" setting, to set them straight or curved. Can you change the thickness of this line somewhere? Can you change the color?
    Clicking on the line itself only selects the data points, like this:
    There are no options here for styling the line's width or color.

    As soon as I posted this, I discovered the solution. While selecting the data points, you need to select the "Style" tab under the Format sidebar, like so:
    Then you can style the connecting lines however you like.

  • How to display a goal line in a Flash 2D Line Chart?

    Hello,
    I am using Apex 3.0.1 and have a Flash 2d Line Chart displaying a ratio that varies from 1.0 to 1.6 for every month for a year. I need to draw a goal line at 1.2 to show the goal for the ratio. Also, I have grid lines enabled for the y-axis.
    Any pointers/tips on how to accomplish displaying this goal line would be really useful.
    Thanks and Regards,
    Dev

    I'm having the same problem!
    APEX is relatively new to me. CUSTOM XML for tweaking charts is even more recent. I tried to get a goal line to work in a line chart as you described but I have had no success. I really require a target/goal/reference line in a vertical bar chart but getting it to work in a line chart would be a welcome first step.
    I have tried the following 2 samples of code without success:
    <objects>
    <line value='94' text='Target' text_position='right' color='0xFF3300' size='1' alpha='100'/>
    </objects>
    and
    <objects>
    <trend start_value='94' end_value='94' start_argument='' end_argument='' value='' color='0xFF3300' thickness='1' alpha='100'/>
    </objects>
    ==> in the following blocks of the CUSTOM XML:
    <chart .....</chart>
    <chart..<line_chart .....</line_chart>..</chart>
    <workspace> .. <chart_area .....</chart_area> ..</workspace>
    <workspace> .. <y_axis .....</y_axis> ..</workspace>
    <workspace> .. <grid> ..<values .....</values ..</grid> ..</workspace>
    <workspace> .. <grid> .....</grid> ..</workspace>
    Any idea where I am going wrong or what could be missing? Maybe I'm not putting the <objects> parameters in the correct place in the code?
    System Info:
    Product Build: 3.0.1.00.07
    NLS_CHARACTERSET: WE8MSWIN1252
    DAD CHARACTERSET: UTF-8
    JOB_QUEUE_PROCESSES: 10
    Database Version Information
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE 10.2.0.3.0 Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Thanks for any help!
    Lawrence

  • How to move the origin in the line chart.

    Hello,
    I am unable to move the origin in the line chart, the general graph usually starts from next to the origin, but in the line chart for eg: I have jan,feb,march etc on x-axis, I m getting Jan at the origin place, I wanna shift it to the right  so that I get a graph in the middle.Can anybody please help me regarding this.
    suma.

    Erik:
    You can specify the '%' in the 'Postfix' field in the 'Display Settings' on the 'Chart Attributes' page.
    Varad

Maybe you are looking for

  • Cannot see a particular file on an External Hard Drive- file is not hidden!

    Hi folks, I think this should be a common problem, but I couldn't seem to find an exact match to my topic in the search, so I hope you guys don't mind helping me out if this has been asked before! Well my problem is basically stated in my subject. A

  • My iPhone 4s cannot download from app store

    For a couple days now my iPhone 4s cannot download anything from the app store. I cannot download new apps or updates. It does not give me an error message or anything. It just shows the icon on my iPhone screen and it says waiting right underneath i

  • MM-SUS Scenario - BP Creation from MM with external number

    Hi Gurus, We are implementing MM-SUS scenario on landscape involving ECC 6.0 EHP5 and SRM 7.0 EHP1. In connection with Vendor transfer from ECC to SUS, We want to achieve that ECC vendor and SUS business partner (BP) have the same number (I E: vendor

  • A few simple questions from a new Iphone user

    Hi a few simple questions, just got an iphone 2g - 2nd hand so not really sure what to expect. Anyway I guess my first question is about mine sometimes being a little slow - when I look at contacts and sometimes when sending a txt it slows down/freez

  • Use alert box in javascript using xsl:message in Xalan

    There appears to be a xsl:message tag in XSLT. According to W3C, the implementation is dependent on the XSLT transformer. However, this tag output the message to my console. I would on the other hand like to output the message in a javascript alert b