Class ScatterPlotGenerator

All Implemented Interfaces:
ImageObserver, MenuContainer, Serializable, Accessible

public class ScatterPlotGenerator extends XYChartGenerator
See Also:
  • Constructor Details

    • ScatterPlotGenerator

      public ScatterPlotGenerator()
  • Method Details

    • removeSeries

      public void removeSeries(int index)
      Description copied from class: ChartGenerator
      Override this to remove a series from the chart. Be sure to call super(...) first.
      Overrides:
      removeSeries in class ChartGenerator
    • moveSeries

      public void moveSeries(int index, boolean up)
      Description copied from class: ChartGenerator
      Override this to move a series relative to other series. Be sure to call super(...) first.
      Overrides:
      moveSeries in class ChartGenerator
    • buildChart

      protected void buildChart()
      Description copied from class: ChartGenerator
      Override this to construct the appropriate kind of chart. This is the first thing called from the constructor; so certain of your instance variables may not have been set yet and you may need to set them yourself. You'll need to set the dataset.
      Specified by:
      buildChart in class ChartGenerator
    • update

      protected void update()
      Overrides:
      update in class ChartGenerator
    • addSeries

      public SeriesAttributes addSeries(double[][] values, String name, org.jfree.data.general.SeriesChangeListener stopper)
    • updateSeries

      public void updateSeries(int index, double[][] vals)