Example usage for org.jfree.chart.swt ChartComposite setVerticalAxisTrace

List of usage examples for org.jfree.chart.swt ChartComposite setVerticalAxisTrace

Introduction

In this page you can find the example usage for org.jfree.chart.swt ChartComposite setVerticalAxisTrace.

Prototype

public void setVerticalAxisTrace(boolean flag) 

Source Link

Document

A flag that controls trace lines on the vertical axis.

Usage

From source file:org.jfree.chart.swt.demo.SWTTimeSeriesDemo1.java

/**
 * Starting point for the demonstration application.
 *
 * @param args  ignored./*from  w  w w .  jav a 2 s. co  m*/
 */
public static void main(String[] args) {
    final JFreeChart chart = createChart(createDataset());
    final Display display = new Display();
    Shell shell = new Shell(display);
    shell.setSize(600, 300);
    shell.setLayout(new FillLayout());
    shell.setText("Time series demo for jfreechart running with SWT");
    ChartComposite frame = new ChartComposite(shell, SWT.NONE, chart, true);
    frame.setDisplayToolTips(true);
    frame.setHorizontalAxisTrace(false);
    frame.setVerticalAxisTrace(false);
    shell.open();
    while (!shell.isDisposed()) {
        if (!display.readAndDispatch())
            display.sleep();
    }
}

From source file:org.jfree.chart.swt.demo.SWTMultipleAxisDemo1.java

/**
 * Starting point for the demonstration application.
 *
 * @param args  ignored./*  www  . ja  v a2 s.  c o m*/
 */
public static void main(String[] args) {
    final JFreeChart chart = createChart();
    final Display display = new Display();
    Shell shell = new Shell(display);
    shell.setSize(600, 300);
    shell.setLayout(new FillLayout());
    shell.setText("Test for jfreechart running with SWT");
    ChartComposite frame = new ChartComposite(shell, SWT.NONE, chart, true);
    frame.setDisplayToolTips(false);
    frame.setHorizontalAxisTrace(true);
    frame.setVerticalAxisTrace(true);
    shell.open();
    while (!shell.isDisposed()) {
        if (!display.readAndDispatch())
            display.sleep();
    }
}