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

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

Introduction

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

Prototype

public void setDisplayToolTips(boolean displayToolTips) 

Source Link

Usage

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

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