Interface XYDataSeriesInternal

All Superinterfaces:
DataSeries, DataSeriesInternal, PlotExceptionCause, Serializable, Series, SeriesInternal, XYDataSeries
All Known Subinterfaces:
IntervalXYDataSeriesInternal, OHLCDataSeriesInternal, XYErrorBarDataSeriesInternal
All Known Implementing Classes:
AbstractXYDataSeries, IntervalXYDataSeriesArray, OHLCDataSeriesArray, OHLCDataSeriesSwappableTableArray, OHLCDataSeriesTableArray, XYDataSeriesArray, XYDataSeriesFunctionImpl, XYDataSeriesSwappableTableArray, XYDataSeriesTableArray, XYErrorBarDataSeriesArray, XYErrorBarDataSeriesSwappableTableArray, XYErrorBarDataSeriesTableArray

public interface XYDataSeriesInternal extends XYDataSeries, DataSeriesInternal
DataSeriesInternal with two numerical components, x and y. Data points are numbered and are accessed with an index.
  • Method Details

    • copy

      Description copied from interface: SeriesInternal
      Create a copy of the series on a different set of axes.
      Specified by:
      copy in interface DataSeriesInternal
      Specified by:
      copy in interface SeriesInternal
      Parameters:
      axes - new axes.
      Returns:
      copy of the series on a different set of axes.
    • getX

      double getX(int i)
      Gets the x value of the data point at index i.
      Parameters:
      i - index
      Returns:
      x value of this data point at index i
    • getY

      double getY(int i)
      Gets the y value of the data point at index i.
      Parameters:
      i - index
      Returns:
      x value of this data point at index i
    • getPointSize

      Double getPointSize()
      Gets the default size for data points.
      Returns:
      default size for data points
    • getPointSize

      Double getPointSize(int i)
      Gets the size of the data point at index i.
      Parameters:
      i - index
      Returns:
      size of this data point at index i
    • getPointColor

      Paint getPointColor()
      Gets the default color for data points.
      Returns:
      default color for data points.
    • getPointColor

      Paint getPointColor(int i)
      Gets the color of the data point at index i.
      Parameters:
      i - index
      Returns:
      color of this data point at index i
    • getPointLabel

      String getPointLabel()
      Gets the default label for data points.
      Returns:
      default label for data points.
    • getPointLabel

      String getPointLabel(int i)
      Gets the label of the data point at index i.
      Parameters:
      i - index
      Returns:
      label of this data point at index i
    • getPointShape

      Shape getPointShape()
      Gets the default shape for data points.
      Returns:
      default shape for data points.
    • getPointShape

      Shape getPointShape(int i)
      Gets the shape of the data point at index i.
      Parameters:
      i - index
      Returns:
      shape of this data point at index i
    • getStartX

      default double getStartX(int i)
    • getEndX

      default double getEndX(int i)
    • getStartY

      default double getStartY(int i)
    • getEndY

      default double getEndY(int i)
    • drawXError

      default boolean drawXError()
    • drawYError

      default boolean drawYError()