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

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

Introduction

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

Prototype

public void setHorizontalAxisTrace(boolean flag) 

Source Link

Document

A flag that controls trace lines on the horizontal axis.

Usage

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

/**
 * Starting point for the demonstration application.
 *
 * @param args  ignored./*from ww w.  j av  a2s  .c  o  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./* w  ww  .  j a v a  2s. 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();
    }
}