Example usage for org.jfree.ui ApplicationFrame subclass-usage

List of usage examples for org.jfree.ui ApplicationFrame subclass-usage

Introduction

In this page you can find the example usage for org.jfree.ui ApplicationFrame subclass-usage.

Usage

From source file org.jfree.chart.demo.BoxAndWhiskerChartDemo1.java

public class BoxAndWhiskerChartDemo1 extends ApplicationFrame {

    private static final long serialVersionUID = 1L;

    public BoxAndWhiskerChartDemo1(String s) {
        super(s);

From source file ttma.client.GUI.StatFinance.java

public class StatFinance extends ApplicationFrame {
    public StatFinance(String applicationTitle, String chartTitle, String mois, String Anne) {
        super(applicationTitle);
        JFreeChart barChart = ChartFactory.createBarChart(chartTitle + " " + mois + " " + Anne, "Category", "TND",
                createDataset(), PlotOrientation.VERTICAL, true, true, false);

From source file src.Barchart.java

public class Barchart extends ApplicationFrame {
    public Barchart(String windowTitle, String chartTitle, String nombreChart, String nombreMetrica,
            ArrayList<String> barras, ArrayList<Double> valorBarras, String tiposValor) {
        super(windowTitle);
        JFreeChart barChart = ChartFactory.createBarChart(chartTitle, nombreChart, nombreMetrica,
                createDataset(barras, valorBarras, tiposValor), PlotOrientation.VERTICAL, true, true, false);

From source file pertchart.Histogram.java

/**
 * An example found here:
 * http://java2s.com/Code/Java/Chart/JFreeChartXYSeriesDemo3.htm
 *
 * @author zac
 */

From source file org.jfree.chart.demo.MeterChartDemo3.java

public class MeterChartDemo3 extends ApplicationFrame {

    private static final long serialVersionUID = 1L;

    public MeterChartDemo3(String s) {
        super(s);

From source file org.jfree.chart.demo.XYLineAndShapeRendererDemo1.java

public class XYLineAndShapeRendererDemo1 extends ApplicationFrame {

    private static final long serialVersionUID = 1L;

    public XYLineAndShapeRendererDemo1(String s) {
        super(s);

From source file org.jfree.chart.demo.YIntervalChartDemo1.java

public class YIntervalChartDemo1 extends ApplicationFrame {

    private static final long serialVersionUID = 1L;

    public YIntervalChartDemo1(String s) {
        super(s);

From source file org.jfree.chart.demo.XYPolygonAnnotationDemo1.java

public class XYPolygonAnnotationDemo1 extends ApplicationFrame {

    private static final long serialVersionUID = 1L;

    public XYPolygonAnnotationDemo1(String s) {
        super(s);

From source file org.jfree.chart.demo.XYStepRendererDemo1.java

public class XYStepRendererDemo1 extends ApplicationFrame {

    private static final long serialVersionUID = 1L;

    public XYStepRendererDemo1(String s) {
        super(s);

From source file is2pr3.HistogramDisplay.java

/**
 *
 * @author javier
 */
public class HistogramDisplay extends ApplicationFrame {