How can I draw such a graph using Swing? I have used a JFreeChart library, but I don't know how can I draw such a line graph using that library?

graph

import org.jfree.chart.*;
import org.jfree.chart.plot.PlotOrientation;
import org.jfree.data.xy.*;

public class DrawGraph{

public void drawGraph(int[][] drawPoints) {
  XYSeries series = new XYSeries("Average Weight");
  for(int i=0;i<drawPoints.length;i++){
    for(int j=0;j<=1;j+=2){
        if(drawPoints[i][j]!=0){
            series.add(bla...bla...bla...);
        }
    }
  }

  XYDataset xyDataset = new XYSeriesCollection(series);
  JFreeChart chart = ChartFactory.createXYLineChart
  ("XYLine Chart using JFreeChart", "Age", "Weight",
 xyDataset, PlotOrientation.VERTICAL, true, true, false);
  ChartFrame frame1=new ChartFrame("XYLine Chart",chart);
  frame1.setVisible(true);
  frame1.setSize(300,300);
  }

}

I have drawn graph using this but isn't working...

link|improve this question

A picture paints a thousand words. What does your graph look like? – Andrew Thompson Feb 3 at 7:18
@AndrewThompson: i have given a link for the graph... at the top or click here – codeMaker Feb 3 at 7:27
So you want to draw a picture like the one at the top or is the top one the one you've drawn? – Kris Feb 3 at 7:28
i want to draw a picture like the top. that is : [i.imgur.com/ahyiQ.jpg] – codeMaker Feb 3 at 7:32
1  
"i have given a link for the graph" Yes, I saw it before making my comment, noi need for the 2nd & 3rd link to the same image. But there are 2 graphs involved 1) the one you want 2) the one you have. Show us what you have! – Andrew Thompson Feb 3 at 7:40
show 2 more comments
feedback

2 Answers

up vote 1 down vote accepted

It looks like you're having trouble constructing a dataset. You can use a method like that shown below with either ChartFactory.createXYAreaChart() or ChartFactory.createXYLineChart().

private static XYDataset createDataset() {
    XYSeriesCollection result = new XYSeriesCollection();
    XYSeries series = new XYSeries("Test");
    series.add(0, 2);
    // more points here
    series.add(10, 10);
    result.addSeries(series);
    return result;
}

See also these examples.

As an aside, it's not clear what's important in you picture, and I can't make sense of the unordered axis at the top. In my opinion, the better question is not How do I make this graph? but rather How can I best display this data?

link|improve this answer
feedback

http://sourceforge.net/apps/trac/jung/wiki/JUNGManual

Use JUNG instead. Its easy and written in java.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.