Example usage for org.jfree.chart.fx.interaction ChartMouseListenerFX interface-usage

List of usage examples for org.jfree.chart.fx.interaction ChartMouseListenerFX interface-usage

Introduction

In this page you can find the example usage for org.jfree.chart.fx.interaction ChartMouseListenerFX interface-usage.

Usage

From source file com.bdb.weather.display.summary.RainSummary.java

/**
 * Plot to summarize rain over a specified period of time
 */
public class RainSummary extends ChartDataPane implements ChartMouseListenerFX {
    private XYPlot rainPlot;
    private JFreeChart chart;

From source file com.bdb.weather.display.summary.WindSummary.java

/**
 * Plot to display the summary of winds.
 * 
 * @author Bruce
 *
 */

From source file com.bdb.weather.display.summary.HighLowMedianTempPanel.java

/**
 * JavaFX component that displays a graph of actual high/low/mean temperatures against location averages (sometimes referred to as "normal").
 * 
 * @author Bruce
 *
 */

From source file com.bdb.weather.display.summary.HighLowPanel.java

public abstract class HighLowPanel<T extends Measurement> extends ChartDataPane implements ChartMouseListenerFX {
    private static final String HIGH_COL_HEADING = "High";
    private static final String LOW_COL_HEADING = "Low";
    private static final String AVG_COL_HEADING = "Avg";

    public static class SeriesInfo<T extends Measurement>