List of usage examples for org.jfree.ui ApplicationFrame subclass-usage
From source file views.StockGraph.java
public class StockGraph extends ApplicationFrame { public StockGraph(String FrameTitle, String chartTitle) { super(FrameTitle); JFreeChart lineChart = ChartFactory.createLineChart(chartTitle, "Date", "Price", createDataset(), PlotOrientation.VERTICAL, true, true, false);
From source file spminiproject.lab2.chart.Histogram2.java
/** * * @author Ronald j del Rosario */ public class Histogram2 extends ApplicationFrame { public Histogram2(String title, double vector[], int intervals, String labelx, String labely) {
From source file thesisdata.PieChartDemo1.java
/** * A simple demonstration application showing how to create a pie chart using * data from a {@link DefaultPieDataset}. */ public class PieChartDemo1 extends ApplicationFrame {
From source file org.jfree.chart.demo.RelativeDateFormatDemo1.java
public class RelativeDateFormatDemo1 extends ApplicationFrame { private static final long serialVersionUID = 1L; public RelativeDateFormatDemo1(String s) { super(s);
From source file org.jfree.chart.demo.RelativeDateFormatDemo2.java
public class RelativeDateFormatDemo2 extends ApplicationFrame { private static final long serialVersionUID = 1L; public RelativeDateFormatDemo2(String s) { super(s);
From source file org.jfree.chart.demo.MinMaxCategoryPlotDemo1.java
public class MinMaxCategoryPlotDemo1 extends ApplicationFrame { private static final long serialVersionUID = 1L; public MinMaxCategoryPlotDemo1(String s) { super(s);
From source file cv.mikusher.freechart.XYLineChart.java
public class XYLineChart extends ApplicationFrame { public XYLineChart(String applicationTitle, String chartTitle) { super(applicationTitle); setDefaultCloseOperation(ApplicationFrame.EXIT_ON_CLOSE); JFreeChart xylineChart = ChartFactory.createXYLineChart(chartTitle, "Category", "Score", createDataset(), PlotOrientation.VERTICAL, true, true, false);
From source file org.jfree.chart.demo.XYSplineRendererDemo1a.java
public class XYSplineRendererDemo1a extends ApplicationFrame { private static final long serialVersionUID = 1L; public XYSplineRendererDemo1a(String s) { super(s);
From source file org.jfree.chart.demo.XYAreaRenderer2Demo1.java
public class XYAreaRenderer2Demo1 extends ApplicationFrame { private static final long serialVersionUID = 1L; public XYAreaRenderer2Demo1(String s) { super(s);
From source file org.jfree.chart.demo.XYLine3DRendererDemo1.java
public class XYLine3DRendererDemo1 extends ApplicationFrame { private static final long serialVersionUID = 1L; public XYLine3DRendererDemo1(String s) { super(s);