Class AxesImpl

java.lang.Object
io.deephaven.plot.AxesImpl
All Implemented Interfaces:
Axes, PlotExceptionCause, Serializable

public class AxesImpl extends Object implements Axes, PlotExceptionCause
Chart's axes.
See Also:
  • Method Details

    • getPlotInfo

      public PlotInfo getPlotInfo()
      Specified by:
      getPlotInfo in interface PlotExceptionCause
    • chart

      public ChartImpl chart()
      Gets this Axes's Chart.
      Returns:
      this Axes's Chart
    • id

      public int id()
      Gets this AxesImpl's id.
      Returns:
      this AxesImpl's id
    • name

      public String name()
      Gets the name of the Axes.
      Returns:
      name of the axes.
    • dataSeries

      public SeriesCollection dataSeries()
      Gets the collection of data series.
      Returns:
      collection of data series.
    • getPlotStyle

      public PlotStyle getPlotStyle()
      Gets this AxesImpl's PlotStyle.
      Returns:
      this AxesImpl's PlotStyle
    • getSwappableTables

      public Set<SwappableTable> getSwappableTables()
    • getPartitionedTableHandles

      public Set<PartitionedTableHandle> getPartitionedTableHandles()
    • getAxes

      public AxisImpl[] getAxes()
    • axesRemoveSeries

      public AxesImpl axesRemoveSeries(String... removeSeriesNames)
      Removes the series with the specified names from this Axes.
      Specified by:
      axesRemoveSeries in interface Axes
      Parameters:
      removeSeriesNames - series names
      Returns:
      this Chart
    • series

      public SeriesInternal series(int id)
      Description copied from interface: Axes
      Gets a data series.
      Specified by:
      series in interface Axes
      Parameters:
      id - series id.
      Returns:
      selected data series.
    • series

      public SeriesInternal series(Comparable name)
      Description copied from interface: Axes
      Gets a data series.
      Specified by:
      series in interface Axes
      Parameters:
      name - series name.
      Returns:
      selected data series.
    • plotStyle

      public AxesImpl plotStyle(PlotStyle plotStyle)
      Sets the PlotStyle of this Axes.
      Specified by:
      plotStyle in interface Axes
      Parameters:
      plotStyle - style
      Returns:
      this Axes
    • plotStyle

      public AxesImpl plotStyle(String plotStyle)
      Sets the PlotStyle of this Axes.
      Specified by:
      plotStyle in interface Axes
      Parameters:
      plotStyle - style
      Returns:
      this Axes
    • twin

      public AxesImpl twin()
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same Axis objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of the Axis) but may have, for example, a different PlotStyle.
      Specified by:
      twin in interface Axes
      Returns:
      the new Axes instance. The axes name will be equal to the string representation of the axes id.
    • twin

      public AxesImpl twin(String name)
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same Axis objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of the Axis) but may have, for example, a different PlotStyle.
      Specified by:
      twin in interface Axes
      Parameters:
      name - Name for the axes
      Returns:
      the new Axes instance
    • twin

      public AxesImpl twin(int dim)
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same Axis objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of the Axis) but may have, for example, a different PlotStyle.
      Specified by:
      twin in interface Axes
      Parameters:
      dim - Axis dimension to share. The x-axis is dimension 0, y-axis is dimension 1.
      Returns:
      the new Axes instance. The axes name will be equal to the string representation of the axes id.
    • twin

      public AxesImpl twin(String name, int dim)
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same Axis objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of the Axis) but may have, for example, a different PlotStyle.
      Specified by:
      twin in interface Axes
      Parameters:
      name - name for the axes
      dim - Axis dimension to share. The x-axis is dimension 0, y-axis is dimension 1.
      Returns:
      the new Axes instance
    • twinX

      public AxesImpl twinX()
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same x-Axis as this Axes.

      The resultant Axes has the same x-axis range, ticks, etc. as this Axes (as these are properties of the Axis) but may have, for example, a different PlotStyle.

      Specified by:
      twinX in interface Axes
      Returns:
      the new Axes instance. The axes name will be equal to the string representation of the axes id.
    • twinX

      public AxesImpl twinX(String name)
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same x-Axis as this Axes.

      The resultant Axes has the same x-axis range, ticks, etc. as this Axes (as these are properties of the Axis) but may have, for example, a different PlotStyle.

      Specified by:
      twinX in interface Axes
      Parameters:
      name - Name for the axes
      Returns:
      the new Axes instance
    • twinY

      public AxesImpl twinY()
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same y-Axis as this Axes.

      The resultant Axes has the same y-axis range, ticks, etc. as this Axes (as these are properties of the Axis) but may have, for example, a different PlotStyle.

      Specified by:
      twinY in interface Axes
      Returns:
      the new Axes instance. The axes name will be equal to the string representation of the axes id.
    • twinY

      public AxesImpl twinY(String name)
      Description copied from interface: Axes
      Creates a new Axes instance which shares the same y-Axis as this Axes.

      The resultant Axes has the same y-axis range, ticks, etc. as this Axes (as these are properties of the Axis) but may have, for example, a different PlotStyle.

      Specified by:
      twinY in interface Axes
      Parameters:
      name - Name for the axes
      Returns:
      the new Axes instance
    • axis

      public AxisImpl axis(int dim)
      Description copied from interface: Axes
      Gets the Axis at dimension dim. The x-axis is dimension 0, y-axis dimension 1.
      Specified by:
      axis in interface Axes
      Parameters:
      dim - dimension of the Axis
      Returns:
      Axis at dimension dim
    • xAxis

      public AxisImpl xAxis()
      Description copied from interface: Axes
      Gets the Axis representing the x-axis
      Specified by:
      xAxis in interface Axes
      Returns:
      x-dimension Axis
    • yAxis

      public AxisImpl yAxis()
      Description copied from interface: Axes
      Gets the Axis representing the y-axis
      Specified by:
      yAxis in interface Axes
      Returns:
      y-dimension Axis
    • xFormat

      public AxesImpl xFormat(AxisFormat axisFormat)
      Description copied from interface: Axes
      Sets the AxisFormat of the x-Axis
      Specified by:
      xFormat in interface Axes
      Parameters:
      axisFormat - format
      Returns:
      this Axes
    • yFormat

      public AxesImpl yFormat(AxisFormat axisFormat)
      Description copied from interface: Axes
      Sets the AxisFormat of the y-Axis
      Specified by:
      yFormat in interface Axes
      Parameters:
      axisFormat - format
      Returns:
      this Axes
    • xFormatPattern

      public AxesImpl xFormatPattern(String axisFormatPattern)
      Description copied from interface: Axes
      Sets the format pattern of the x-Axis
      Specified by:
      xFormatPattern in interface Axes
      Parameters:
      axisFormatPattern - pattern
      Returns:
      this Axes
    • yFormatPattern

      public AxesImpl yFormatPattern(String axisFormatPattern)
      Description copied from interface: Axes
      Sets the format pattern of the y-Axis
      Specified by:
      yFormatPattern in interface Axes
      Parameters:
      axisFormatPattern - pattern
      Returns:
      this Axes
    • xColor

      public AxesImpl xColor(Paint color)
      Description copied from interface: Axes
      Sets the color of the x-Axis
      Specified by:
      xColor in interface Axes
      Parameters:
      color - color
      Returns:
      this Axes
    • xColor

      public AxesImpl xColor(String color)
      Description copied from interface: Axes
      Sets the color of the x-Axis
      Specified by:
      xColor in interface Axes
      Parameters:
      color - color
      Returns:
      this Axes
    • yColor

      public AxesImpl yColor(Paint color)
      Description copied from interface: Axes
      Sets the color of the y-Axis
      Specified by:
      yColor in interface Axes
      Parameters:
      color - color
      Returns:
      this Axes
    • yColor

      public AxesImpl yColor(String color)
      Description copied from interface: Axes
      Sets the color of the y-Axis
      Specified by:
      yColor in interface Axes
      Parameters:
      color - color
      Returns:
      this Axes
    • xLabel

      public AxesImpl xLabel(String label)
      Description copied from interface: Axes
      Sets the label of the x-Axis
      Specified by:
      xLabel in interface Axes
      Parameters:
      label - label
      Returns:
      this Axes
    • yLabel

      public AxesImpl yLabel(String label)
      Description copied from interface: Axes
      Sets the label of the y-Axis
      Specified by:
      yLabel in interface Axes
      Parameters:
      label - pattern
      Returns:
      this Axes
    • xLabelFont

      public AxesImpl xLabelFont(Font font)
      Description copied from interface: Axes
      Sets the font for the x-Axis label.
      Specified by:
      xLabelFont in interface Axes
      Parameters:
      font - font
      Returns:
      this Axis
    • yLabelFont

      public AxesImpl yLabelFont(Font font)
      Description copied from interface: Axes
      Sets the font for the y-Axis label.
      Specified by:
      yLabelFont in interface Axes
      Parameters:
      font - font
      Returns:
      this Axis
    • xLabelFont

      public AxesImpl xLabelFont(String family, String style, int size)
      Description copied from interface: Axes
      Sets the font for the x-Axis label.
      Specified by:
      xLabelFont in interface Axes
      Parameters:
      family - font family; if null, set to Arial
      style - font style; if null, set to Font.FontStyle PLAIN
      size - the point size of the Font
      Returns:
      this Axis
    • yLabelFont

      public AxesImpl yLabelFont(String family, String style, int size)
      Description copied from interface: Axes
      Sets the font for the y-Axis label.
      Specified by:
      yLabelFont in interface Axes
      Parameters:
      family - font family; if null, set to Arial
      style - font style; if null, set to Font.FontStyle PLAIN
      size - the point size of the Font
      Returns:
      this Axis
    • xTicksFont

      public AxesImpl xTicksFont(Font font)
      Description copied from interface: Axes
      Sets the font for the x-Axis ticks.
      Specified by:
      xTicksFont in interface Axes
      Parameters:
      font - font
      Returns:
      this Axis
    • yTicksFont

      public AxesImpl yTicksFont(Font font)
      Description copied from interface: Axes
      Sets the font for the y-Axis ticks.
      Specified by:
      yTicksFont in interface Axes
      Parameters:
      font - font
      Returns:
      this Axis
    • xTicksFont

      public AxesImpl xTicksFont(String family, String style, int size)
      Description copied from interface: Axes
      Sets the font for the x-Axis ticks.
      Specified by:
      xTicksFont in interface Axes
      Parameters:
      family - font family; if null, set to Arial
      style - font style; if null, set to Font.FontStyle PLAIN
      size - the point size of the Font
      Returns:
      this Axis
    • yTicksFont

      public AxesImpl yTicksFont(String family, String style, int size)
      Description copied from interface: Axes
      Sets the font for the y-Axis ticks.
      Specified by:
      yTicksFont in interface Axes
      Parameters:
      family - font family; if null, set to Arial
      style - font style; if null, set to Font.FontStyle PLAIN
      size - the point size of the Font
      Returns:
      this Axis
    • xTransform

      public AxesImpl xTransform(AxisTransform transform)
      Description copied from interface: Axes
      Sets the AxisTransform of the x-Axis
      Specified by:
      xTransform in interface Axes
      Parameters:
      transform - transform
      Returns:
      this Axes
    • yTransform

      public AxesImpl yTransform(AxisTransform transform)
      Description copied from interface: Axes
      Sets the AxisTransform of the y-Axis
      Specified by:
      yTransform in interface Axes
      Parameters:
      transform - transform
      Returns:
      this Axes
    • xLog

      public AxesImpl xLog()
      Description copied from interface: Axes
      Sets the AxisTransform of the x-Axis to log base 10
      Specified by:
      xLog in interface Axes
      Returns:
      this Axes
    • yLog

      public AxesImpl yLog()
      Description copied from interface: Axes
      Sets the AxisTransform of the y-Axis to log base 10
      Specified by:
      yLog in interface Axes
      Returns:
      this Axes
    • xLog

      public AxesImpl xLog(boolean useLog)
      Description copied from interface: Axes
      Sets the AxisTransform of the x-Axis to log base 10
      Specified by:
      xLog in interface Axes
      Parameters:
      useLog - true to use a log axis transform; false to use a linear axis transform.
      Returns:
      this Axes
    • yLog

      public AxesImpl yLog(boolean useLog)
      Description copied from interface: Axes
      Sets the AxisTransform of the y-Axis to log base 10
      Specified by:
      yLog in interface Axes
      Parameters:
      useLog - true to use a log axis transform; false to use a linear axis transform.
      Returns:
      this Axes
    • xBusinessTime

      public AxesImpl xBusinessTime(BusinessCalendar calendar)
      Description copied from interface: Axes
      Specified by:
      xBusinessTime in interface Axes
      Parameters:
      calendar - business calendar for the AxisTransformBusinessCalendar
      Returns:
      this Axes using the calendar for the x-Axis business calendar.
    • yBusinessTime

      public AxesImpl yBusinessTime(BusinessCalendar calendar)
      Description copied from interface: Axes
      Specified by:
      yBusinessTime in interface Axes
      Parameters:
      calendar - business calendar for the AxisTransformBusinessCalendar
      Returns:
      this Axes using the calendar for the y-Axis business calendar.
    • xBusinessTime

      public AxesImpl xBusinessTime(SelectableDataSet sds, String calendar)
      Description copied from interface: Axes
      Specified by:
      xBusinessTime in interface Axes
      Parameters:
      sds - selectable data set (e.g. OneClick filterable table) containing the business calendar.
      calendar - name of a column containing String values, where each value is the name of a BusinessCalendar.
      Returns:
      this Axes using the business calendar from row 0 of the filtered sds for the x-Axis business calendar. If no value is found, no transform will be applied.
    • yBusinessTime

      public AxesImpl yBusinessTime(SelectableDataSet sds, String calendar)
      Description copied from interface: Axes
      Specified by:
      yBusinessTime in interface Axes
      Parameters:
      sds - selectable data set (e.g. OneClick filterable table) containing the business calendar.
      calendar - name of a column containing String values, where each value is the name of a BusinessCalendar.
      Returns:
      this Axes using the business calendar from row 0 of the filtered sds for the y-Axis business calendar. If no value is found, no transform will be applied.
    • xBusinessTime

      public AxesImpl xBusinessTime()
      Description copied from interface: Axes
      Specified by:
      xBusinessTime in interface Axes
      Returns:
      this Axes using the default BusinessCalendar for the x-Axis.
    • yBusinessTime

      public AxesImpl yBusinessTime()
      Description copied from interface: Axes
      Specified by:
      yBusinessTime in interface Axes
      Returns:
      this Axes using the default BusinessCalendar for the y-Axis.
    • xBusinessTime

      public AxesImpl xBusinessTime(boolean useBusinessTime)
      Description copied from interface: Axes
      Specified by:
      xBusinessTime in interface Axes
      Parameters:
      useBusinessTime - true to use a business time axis transform; false to use a linear axis transform.
      Returns:
      this Axes using the default BusinessCalendar for the x-Axis.
    • yBusinessTime

      public AxesImpl yBusinessTime(boolean useBusinessTime)
      Description copied from interface: Axes
      Specified by:
      yBusinessTime in interface Axes
      Parameters:
      useBusinessTime - true to use a business time axis transform; false to use a linear axis transform.
      Returns:
      this Axes using the default BusinessCalendar for the y-Axis.
    • xInvert

      public AxesImpl xInvert()
      Description copied from interface: Axes
      Inverts the x-Axis so that larger values are closer to the origin.
      Specified by:
      xInvert in interface Axes
      Returns:
      this Axes
    • xInvert

      public AxesImpl xInvert(boolean invert)
      Description copied from interface: Axes
      Inverts the x-Axis so that larger values are closer to the origin.
      Specified by:
      xInvert in interface Axes
      Parameters:
      invert - if true, larger values will be closer to the origin
      Returns:
      this Axes
    • yInvert

      public AxesImpl yInvert()
      Description copied from interface: Axes
      Inverts the y-Axis so that larger values are closer to the origin.
      Specified by:
      yInvert in interface Axes
      Returns:
      this Axes
    • yInvert

      public AxesImpl yInvert(boolean invert)
      Description copied from interface: Axes
      Inverts the y-Axis so that larger values are closer to the origin.
      Specified by:
      yInvert in interface Axes
      Parameters:
      invert - if true, larger values will be closer to the origin
      Returns:
      this Axes
    • xRange

      public AxesImpl xRange(double min, double max)
      Description copied from interface: Axes
      Sets the range of the x-Axis
      Specified by:
      xRange in interface Axes
      Parameters:
      min - minimum of the range
      max - maximum of the range
      Returns:
      this Axes
    • yRange

      public AxesImpl yRange(double min, double max)
      Description copied from interface: Axes
      Sets the range of the y-Axis
      Specified by:
      yRange in interface Axes
      Parameters:
      min - minimum of the range
      max - maximum of the range
      Returns:
      this Axes
    • xMin

      public AxesImpl xMin(double min)
      Description copied from interface: Axes
      Sets the minimum of the x-Axis.
      Specified by:
      xMin in interface Axes
      Parameters:
      min - minimum of the x-range
      Returns:
      this Axes
    • yMin

      public AxesImpl yMin(double min)
      Description copied from interface: Axes
      Sets the minimum of the y-Axis.
      Specified by:
      yMin in interface Axes
      Parameters:
      min - minimum of the y-range
      Returns:
      this Axes
    • xMin

      public AxesImpl xMin(SelectableDataSet sds, String min)
      Description copied from interface: Axes
      Sets the minimum of the x-Axis.
      Specified by:
      xMin in interface Axes
      Parameters:
      sds - selectable data set (e.g. OneClick filterable table)
      min - column in sds. The value in row 0 is used for the minimum.
      Returns:
      this Axes
    • yMin

      public AxesImpl yMin(SelectableDataSet sds, String min)
      Description copied from interface: Axes
      Sets the minimum of the y-Axis.
      Specified by:
      yMin in interface Axes
      Parameters:
      sds - selectable data set (e.g. OneClick filterable table)
      min - column in sds. The value in row 0 is used for the minimum.
      Returns:
      this Axes
    • xMax

      public AxesImpl xMax(double max)
      Description copied from interface: Axes
      Sets the maximum of the x-Axis.
      Specified by:
      xMax in interface Axes
      Parameters:
      max - maximum of the x-range
      Returns:
      this Axes
    • yMax

      public AxesImpl yMax(double max)
      Description copied from interface: Axes
      Sets the maximum of the y-Axis.
      Specified by:
      yMax in interface Axes
      Parameters:
      max - maximum of the y-range
      Returns:
      this Axes
    • xMax

      public AxesImpl xMax(SelectableDataSet sds, String max)
      Description copied from interface: Axes
      Sets the maximum of the x-Axis.
      Specified by:
      xMax in interface Axes
      Parameters:
      sds - selectable data set (e.g. OneClick filterable table)
      max - column in sds. The value in row 0 is used for the maximum.
      Returns:
      this Axes
    • yMax

      public AxesImpl yMax(SelectableDataSet sds, String max)
      Description copied from interface: Axes
      Sets the maximum of the y-Axis.
      Specified by:
      yMax in interface Axes
      Parameters:
      sds - selectable data set (e.g. OneClick filterable table)
      max - column in sds. The value in row 0 is used for the maximum.
      Returns:
      this Axes
    • xTicksVisible

      public AxesImpl xTicksVisible(boolean visible)
      Description copied from interface: Axes
      Sets whether the x-Axis ticks are visible.
      Specified by:
      xTicksVisible in interface Axes
      Parameters:
      visible - whether the ticks are visible
      Returns:
      this Axes
    • yTicksVisible

      public AxesImpl yTicksVisible(boolean visible)
      Description copied from interface: Axes
      Sets whether the y-Axis ticks are visible.
      Specified by:
      yTicksVisible in interface Axes
      Parameters:
      visible - whether the ticks are visible
      Returns:
      this Axes
    • xTicks

      public AxesImpl xTicks(double gapBetweenTicks)
      Description copied from interface: Axes
      Sets the x-Axis ticks.
      Specified by:
      xTicks in interface Axes
      Parameters:
      gapBetweenTicks - spacing between major ticks
      Returns:
      this Axes
    • yTicks

      public AxesImpl yTicks(double gapBetweenTicks)
      Description copied from interface: Axes
      Sets the y-Axis ticks.
      Specified by:
      yTicks in interface Axes
      Parameters:
      gapBetweenTicks - spacing between major ticks
      Returns:
      this Axes
    • xTicks

      public AxesImpl xTicks(double[] tickLocations)
      Description copied from interface: Axes
      Sets the x-Axis ticks.
      Specified by:
      xTicks in interface Axes
      Parameters:
      tickLocations - locations of the major ticks
      Returns:
      this Axes
    • yTicks

      public AxesImpl yTicks(double[] tickLocations)
      Description copied from interface: Axes
      Sets the y-Axis ticks.
      Specified by:
      yTicks in interface Axes
      Parameters:
      tickLocations - locations of the major ticks
      Returns:
      this Axes
    • xMinorTicksVisible

      public AxesImpl xMinorTicksVisible(boolean visible)
      Description copied from interface: Axes
      Sets whether the x-Axis minor ticks are visible.
      Specified by:
      xMinorTicksVisible in interface Axes
      Parameters:
      visible - whether the minor ticks are visible
      Returns:
      this Axes
    • yMinorTicksVisible

      public AxesImpl yMinorTicksVisible(boolean visible)
      Description copied from interface: Axes
      Sets whether the y-Axis minor ticks are visible.
      Specified by:
      yMinorTicksVisible in interface Axes
      Parameters:
      visible - whether the minor ticks are visible
      Returns:
      this Axes
    • xMinorTicks

      public AxesImpl xMinorTicks(int nminor)
      Description copied from interface: Axes
      Sets the number of minor ticks between consecutive major ticks in the x-Axis. These minor ticks are equally spaced.
      Specified by:
      xMinorTicks in interface Axes
      Parameters:
      nminor - number of minor ticks between consecutive major ticks.
      Returns:
      this Axes
    • yMinorTicks

      public AxesImpl yMinorTicks(int nminor)
      Description copied from interface: Axes
      Sets the number of minor ticks between consecutive major ticks in the y-Axis. These minor ticks are equally spaced.
      Specified by:
      yMinorTicks in interface Axes
      Parameters:
      nminor - number of minor ticks between consecutive major ticks.
      Returns:
      this Axes
    • xTickLabelAngle

      public AxesImpl xTickLabelAngle(double angle)
      Description copied from interface: Axes
      Sets the angle the tick labels the x-Axis are drawn at.
      Specified by:
      xTickLabelAngle in interface Axes
      Parameters:
      angle - angle in degrees
      Returns:
      this Axes
    • yTickLabelAngle

      public AxesImpl yTickLabelAngle(double angle)
      Description copied from interface: Axes
      Sets the angle the tick labels the y-Axis are drawn at.
      Specified by:
      yTickLabelAngle in interface Axes
      Parameters:
      angle - angle in degrees
      Returns:
      this Axes
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      xLow - column in t that holds the low value in the x dimension
      xHigh - column in t that holds the high value in the x dimension
      y - column in t that holds the y-variable data
      yLow - column in t that holds the low value in the y dimension
      yHigh - column in t that holds the high value in the y dimension
      Returns:
      dataset created for plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      xLow - column in sds that holds the low value in the x dimension
      xHigh - column in sds that holds the high value in the x dimension
      y - column in sds that holds the y-variable data
      yLow - column in sds that holds the low value in the y dimension
      yHigh - column in sds that holds the high value in the y dimension
      Returns:
      dataset created for plot
    • errorBarXYBy

      public MultiXYErrorBarSeries errorBarXYBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
      Description copied from interface: Axes
      Creates an errorBar plot per distinct grouping value specified in byColumns.
      Specified by:
      errorBarXYBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      xLow - column in t that holds the low value in the x dimension
      xHigh - column in t that holds the high value in the x dimension
      y - column in t that holds the y-variable data
      yLow - column in t that holds the low value in the y dimension
      yHigh - column in t that holds the high value in the y dimension
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • errorBarXYBy

      public MultiXYErrorBarSeriesSwappable errorBarXYBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
      Description copied from interface: Axes
      Creates an errorBar plot per distinct grouping value specified in byColumns.
      Specified by:
      errorBarXYBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      xLow - column in sds that holds the low value in the x dimension
      xHigh - column in sds that holds the high value in the x dimension
      y - column in sds that holds the y-variable data
      yLow - column in sds that holds the low value in the y dimension
      yHigh - column in sds that holds the high value in the y dimension
      byColumns - column(s) in sds that holds the grouping data
      Returns:
      dataset created for plot
    • errorBarY

      public XYErrorBarDataSeries errorBarY(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      y - column in t that holds the y-variable data
      yLow - column in t that holds the low value in the y dimension
      yHigh - column in t that holds the high value in the y dimension
      Returns:
      dataset created for plot
    • errorBarY

      public XYErrorBarDataSeries errorBarY(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      y - column in sds that holds the y-variable data
      yLow - column in sds that holds the low value in the y dimension
      yHigh - column in sds that holds the high value in the y dimension
      Returns:
      dataset created for plot
    • errorBarYBy

      public MultiXYErrorBarSeries errorBarYBy(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh, String... byColumns)
      Description copied from interface: Axes
      Creates a errorBarY plot per distinct grouping value specified in byColumns.
      Specified by:
      errorBarYBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      y - column in t that holds the y-variable data
      yLow - column in t that holds the low value in the y dimension
      yHigh - column in t that holds the high value in the y dimension
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • errorBarYBy

      public MultiXYErrorBarSeriesSwappable errorBarYBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh, String... byColumns)
      Description copied from interface: Axes
      Creates a errorBarY plot per distinct grouping value specified in byColumns.
      Specified by:
      errorBarYBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      y - column in sds that holds the y-variable data
      yLow - column in sds that holds the low value in the y dimension
      yHigh - column in sds that holds the high value in the y dimension
      byColumns - column(s) in sds that holds the grouping data
      Returns:
      dataset created for plot
    • errorBarX

      public XYErrorBarDataSeries errorBarX(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      xLow - column in t that holds the low value in the x dimension
      xHigh - column in t that holds the high value in the x dimension
      y - column in t that holds the y-variable data
      Returns:
      dataset created for plot
    • errorBarX

      public XYErrorBarDataSeries errorBarX(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      xLow - column in sds that holds the low value in the x dimension
      xHigh - column in sds that holds the high value in the x dimension
      y - column in sds that holds the y-variable data
      Returns:
      dataset created for plot
    • errorBarXBy

      public MultiXYErrorBarSeries errorBarXBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String... byColumns)
      Description copied from interface: Axes
      Creates an errorBarX plot per distinct grouping value specified in byColumns.
      Specified by:
      errorBarXBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      xLow - column in t that holds the low value in the x dimension
      xHigh - column in t that holds the high value in the x dimension
      y - column in t that holds the y-variable data
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • errorBarXBy

      public MultiXYErrorBarSeriesSwappable errorBarXBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String... byColumns)
      Description copied from interface: Axes
      Creates an errorBarX plot per distinct grouping value specified in byColumns.
      Specified by:
      errorBarXBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      xLow - column in sds that holds the low value in the x dimension
      xHigh - column in sds that holds the high value in the x dimension
      y - column in sds that holds the y-variable data
      byColumns - column(s) in sds that holds the grouping data
      Returns:
      dataset created for plot
    • catErrorBar

      public CategoryDataSeries catErrorBar(Comparable seriesName, Table t, String categories, String y, String yLow, String yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      categories - column in t that holds the discrete data
      y - column in t that holds the numeric data
      yLow - column in t that holds the low value in the y dimension
      yHigh - column in t that holds the high value in the y dimension
      Returns:
      dataset created for plot
    • catErrorBar

      public CategoryDataSeries catErrorBar(Comparable seriesName, SelectableDataSet sds, String categories, String y, String yLow, String yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table).
      categories - column in sds that holds the discrete data
      y - column in sds that holds the numeric data
      yLow - column in sds that holds the low value in the y dimension
      yHigh - column in sds that holds the high value in the y dimension
      Returns:
      dataset created for plot
    • catErrorBarBy

      public MultiSeries catErrorBarBy(Comparable seriesName, Table t, String categories, String y, String yLow, String yHigh, String... byColumns)
      Description copied from interface: Axes
      Creates a catErrorBar plot for each distinct grouping value specified in byColumns.
      Specified by:
      catErrorBarBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      categories - column in t that holds the discrete data
      y - column in t that holds the numeric data
      yLow - column in t that holds the low value in the y dimension
      yHigh - column in t that holds the high value in the y dimension
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • catErrorBarBy

      public MultiSeries catErrorBarBy(Comparable seriesName, SelectableDataSet sds, String categories, String y, String yLow, String yHigh, String... byColumns)
      Description copied from interface: Axes
      Creates a catErrorBar plot for each distinct grouping value specified in byColumns.
      Specified by:
      catErrorBarBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable dataset (e.g. OneClick filterable table).
      categories - column in sds that holds the discrete data
      y - column in sds that holds the numeric data
      yLow - column in sds that holds the low value in the y dimension
      yHigh - column in sds that holds the high value in the y dimension
      byColumns - column(s) in sds that holds the grouping data
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesFunctionImpl plot(Comparable seriesName, DoubleUnaryOperator function)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      function - function to plot
      Returns:
      dataset created for plot
    • plot

      public <T extends Number> XYDataSeriesFunctionImpl plot(Comparable seriesName, groovy.lang.Closure<T> function)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T - function input type
      Parameters:
      seriesName - name of the created dataset
      function - function to plot
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, IndexableNumericData x, IndexableNumericData y, boolean hasXTimeAxis, boolean hasYTimeAxis)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      hasXTimeAxis - whether to treat the x-values as time data
      hasYTimeAxis - whether to treat the y-values as time data
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Table t, String x, String y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      y - column in t that holds the y-variable data
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, SelectableDataSet sds, String x, String y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      y - column in sds that holds the y-variable data
      Returns:
      dataset created for plot
    • plotBy

      public MultiXYSeries plotBy(Comparable seriesName, Table t, String x, String y, String... byColumns)
      Description copied from interface: Axes
      Creates an XY plot per distinct grouping value specified in byColumns.
      Specified by:
      plotBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t that holds the x-variable data
      y - column in t that holds the y-variable data
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • plotBy

      public MultiXYSeriesSwappable plotBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String... byColumns)
      Description copied from interface: Axes
      Creates an XY plot per distinct grouping value specified in byColumns.
      Specified by:
      plotBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      x - column in sds that holds the x-variable data
      y - column in sds that holds the y-variable data
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • ohlcPlot

      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created for plot
    • ohlcPlot

      public OHLCDataSeriesTableArray ohlcPlot(Comparable seriesName, Table t, String time, String open, String high, String low, String close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      time - column in t that holds the time data
      open - column in t that holds the open data
      high - column in t that holds the high data
      low - column in t that holds the low data
      close - column in t that holds the close data
      Returns:
      dataset created for plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, SelectableDataSet sds, String time, String open, String high, String low, String close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      time - column in sds that holds the time data
      open - column in sds that holds the open data
      high - column in sds that holds the high data
      low - column in sds that holds the low data
      close - column in sds that holds the close data
      Returns:
      dataset created for plot
    • ohlcPlotBy

      public MultiOHLCSeries ohlcPlotBy(Comparable seriesName, Table t, String time, String open, String high, String low, String close, String... byColumns)
      Description copied from interface: Axes
      Creates an open-high-low-close plot per distinct grouping value specified in byColumns.
      Specified by:
      ohlcPlotBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      time - column in t that holds the time data
      open - column in t that holds the open data
      high - column in t that holds the high data
      low - column in t that holds the low data
      close - column in t that holds the close data
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • ohlcPlotBy

      public MultiOHLCSeriesSwappable ohlcPlotBy(Comparable seriesName, SelectableDataSet sds, String time, String open, String high, String low, String close, String... byColumns)
      Description copied from interface: Axes
      Creates an open-high-low-close plot per distinct grouping value specified in byColumns.
      Specified by:
      ohlcPlotBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      time - column in sds that holds the time data
      open - column in sds that holds the open data
      high - column in sds that holds the high data
      low - column in sds that holds the low data
      close - column in sds that holds the close data
      byColumns - column(s) in sds that holds the grouping data
      Returns:
      dataset created for plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, Table t)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      Returns:
      dataset created for plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, Table t, String x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t
      nbins - number of bins in the resulting histogram
      Returns:
      dataset created for plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, Table t, String x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      x - column in t
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins in the resulting histogram
      Returns:
      dataset created for plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, SelectableDataSet sds, String x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      x - column in sds
      nbins - number of bins in the resulting histogram
      Returns:
      dataset created for plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, SelectableDataSet sds, String x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      x - column in sds
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins in the resulting histogram
      Returns:
      dataset created for plot
    • catHistPlot

      public CategoryDataSeriesPartitionedTable catHistPlot(Comparable seriesName, Table t, String categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      categories - column in t
      Returns:
      dataset created for plot
    • catHistPlot

      public CategoryDataSeriesSwappablePartitionedTable catHistPlot(Comparable seriesName, SelectableDataSet sds, String categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      categories - column in sds
      Returns:
      dataset created for plot
    • catHistPlot

      public <T extends Comparable> CategoryDataSeriesPartitionedTable catHistPlot(Comparable seriesName, T[] categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Type Parameters:
      T - data type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - data
      Returns:
      dataset created for plot
    • catHistPlot

      public CategoryDataSeriesPartitionedTable catHistPlot(Comparable seriesName, int[] categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      categories - data
      Returns:
      dataset created for plot
    • catHistPlot

      public CategoryDataSeriesPartitionedTable catHistPlot(Comparable seriesName, long[] categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      categories - data
      Returns:
      dataset created for plot
    • catHistPlot

      public CategoryDataSeriesPartitionedTable catHistPlot(Comparable seriesName, float[] categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      categories - data
      Returns:
      dataset created for plot
    • catHistPlot

      public CategoryDataSeriesPartitionedTable catHistPlot(Comparable seriesName, double[] categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      categories - data
      Returns:
      dataset created for plot
    • catHistPlot

      public <T extends Comparable> CategoryDataSeriesPartitionedTable catHistPlot(Comparable seriesName, List<T> categories)
      Description copied from interface: Axes
      Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.
      Specified by:
      catHistPlot in interface Axes
      Type Parameters:
      T - data type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - data
      Returns:
      dataset created for plot
    • catPlot

      public <T1 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T1 - data type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - numeric data
      Returns:
      dataset created for plot
    • catPlot

      public CategoryDataSeriesInternal catPlot(Comparable seriesName, Table t, String categories, String y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      categories - column in t holding discrete data
      y - column in t holding numeric data
      Returns:
      dataset created for plot
    • catPlot

      public CategoryDataSeriesInternal catPlot(Comparable seriesName, SelectableDataSet sds, String categories, String y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      categories - column in sds holding discrete data
      y - column in sds holding numeric data
      Returns:
      dataset created for plot
    • catPlotBy

      public MultiCatSeries catPlotBy(Comparable seriesName, Table t, String categories, String y, String... byColumns)
      Description copied from interface: Axes
      Creates a category plot per distinct grouping value specified in byColumns.
      Specified by:
      catPlotBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      categories - column in t holding discrete data
      y - column in t holding numeric data
      byColumns - column(s) in t that holds the grouping data
      Returns:
      dataset created for plot
    • catPlotBy

      public MultiCatSeriesSwappable catPlotBy(Comparable seriesName, SelectableDataSet sds, String categories, String y, String... byColumns)
      Description copied from interface: Axes
      Creates a category plot per distinct grouping value specified in byColumns.
      Specified by:
      catPlotBy in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      categories - column in sds holding discrete data
      y - column in sds holding numeric data
      byColumns - column(s) in sds that holds the grouping data
      Returns:
      dataset created for plot
    • piePlot

      public <T1 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T1 - data type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - data values
      Returns:
      dataset created for plot
    • piePlot

      public CategoryDataSeriesInternal piePlot(Comparable seriesName, Table t, String categories, String y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      categories - column in t with categorical data
      y - column in t with numerical data
      Returns:
      dataset created for plot
    • piePlot

      public CategoryDataSeriesInternal piePlot(Comparable seriesName, SelectableDataSet sds, String categories, String y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      sds - selectable data set (e.g. OneClick filterable table)
      categories - column in sds with categorical data
      y - column in sds with numerical data
      Returns:
      dataset created for plot
    • treemapPlot

      public CategoryDataSeries treemapPlot(Comparable seriesName, Table t, String ids, String parents, @Nullable @Nullable String values, @Nullable @Nullable String labels, @Nullable @Nullable String hoverText, @Nullable @Nullable String color)
      Description copied from interface: Axes
      Creates a treemap plot. Required columns are ids and parents, the rest can be null.
      Specified by:
      treemapPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      t - table
      ids - column in t holding ID data
      parents - column in t holding parent ID data
      values - column in t holding value data
      labels - column in t holding label data
      hoverText - column in t holding hover text data
      color - column in t holding color data
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Date[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Date[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Date[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Date[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Date[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Date[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Date[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, Date[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, Date[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Instant[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Instant[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Instant[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Instant[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Instant[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Instant[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, Instant[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, Instant[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, Instant[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, short[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, short[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, short[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, short[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, short[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, short[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, short[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, short[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, short[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, int[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, int[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, int[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, int[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, int[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, int[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, int[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, int[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, int[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, long[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, long[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, long[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, long[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, long[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, long[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, long[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, long[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, long[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, float[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, float[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, float[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, float[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, float[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, float[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, float[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, float[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, float[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, double[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, double[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, double[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, double[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, double[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, double[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public XYDataSeriesArray plot(Comparable seriesName, double[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, double[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, double[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number, T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number, T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, T0[] x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, short[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, int[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, long[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, float[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, double[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number, T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, T1[] y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • plot

      public <T0 extends Number, T1 extends Number> XYDataSeriesArray plot(Comparable seriesName, List<T0> x, List<T1> y)
      Description copied from interface: Axes
      Creates an XY plot.
      Specified by:
      plot in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      Returns:
      dataset created for plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Date[] time, short[] open, short[] high, short[] low, short[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Instant[] time, short[] open, short[] high, short[] low, short[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Date[] time, int[] open, int[] high, int[] low, int[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Instant[] time, int[] open, int[] high, int[] low, int[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Date[] time, long[] open, long[] high, long[] low, long[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Instant[] time, long[] open, long[] high, long[] low, long[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Date[] time, float[] open, float[] high, float[] low, float[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Instant[] time, float[] open, float[] high, float[] low, float[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Date[] time, double[] open, double[] high, double[] low, double[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Instant[] time, double[] open, double[] high, double[] low, double[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Date[] time, T1[] open, T2[] high, T3[] low, T4[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Type Parameters:
      T1 - open data type
      T2 - high data type
      T3 - low data type
      T4 - close data type
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Instant[] time, T1[] open, T2[] high, T3[] low, T4[] close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Type Parameters:
      T1 - open data type
      T2 - high data type
      T3 - low data type
      T4 - close data type
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Date[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Type Parameters:
      T1 - open data type
      T2 - high data type
      T3 - low data type
      T4 - close data type
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • ohlcPlot

      public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeriesArray ohlcPlot(Comparable seriesName, Instant[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)
      Description copied from interface: Axes
      Creates an open-high-low-close plot.
      Specified by:
      ohlcPlot in interface Axes
      Type Parameters:
      T1 - open data type
      T2 - high data type
      T3 - low data type
      T4 - close data type
      Parameters:
      seriesName - name of the created dataset
      time - time data
      open - open data
      high - high data
      low - low data
      close - close data
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, short[] x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, int[] x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, long[] x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, float[] x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, double[] x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public <T0 extends Number> IntervalXYDataSeriesArray histPlot(Comparable seriesName, T0[] x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - data
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public <T0 extends Number> IntervalXYDataSeriesArray histPlot(Comparable seriesName, List<T0> x, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - data
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, short[] x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, int[] x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, long[] x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, float[] x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public IntervalXYDataSeriesArray histPlot(Comparable seriesName, double[] x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - data
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public <T0 extends Number> IntervalXYDataSeriesArray histPlot(Comparable seriesName, T0[] x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - data
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins
      Returns:
      dataset created by the plot
    • histPlot

      public <T0 extends Number> IntervalXYDataSeriesArray histPlot(Comparable seriesName, List<T0> x, double xmin, double xmax, int nbins)
      Description copied from interface: Axes
      Creates a histogram.
      Specified by:
      histPlot in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - data
      xmin - minimum of the range
      xmax - maximum of the range
      nbins - number of bins
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      T3 - data type
      T4 - data type
      T5 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      T3 - data type
      T4 - data type
      T5 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T3 - data type
      T4 - data type
      T5 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T3 - data type
      T4 - data type
      T5 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T3 - data type
      T4 - data type
      T5 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T3 - data type
      T4 - data type
      T5 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarXY

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in both the x and y directions.
      Specified by:
      errorBarXY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T3 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T3 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, short[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, int[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, long[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, float[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, double[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T3 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, T3[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T3 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, Instant[] x, Instant[] xLow, Instant[] xHigh, List<T3> y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarX

      public <T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeriesArray errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Instant[] y)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the x direction.
      Specified by:
      errorBarX in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      xLow - low value in x dimension
      xHigh - high value in x dimension
      y - y-values
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, short[] x, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, int[] x, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, long[] x, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, float[] x, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, double[] x, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, T0[] x, T1[] y, T2[] yLow, T3[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, List<T0> x, List<T1> y, List<T2> yLow, List<T3> yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T0 - data type
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, short[] x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, int[] x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, long[] x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, float[] x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, double[] x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, T1[] y, T2[] yLow, T3[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T0 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, T0[] x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Date[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T0 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, List<T0> x, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, short[] x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, int[] x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, long[] x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, float[] x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, double[] x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, T1[] y, T2[] yLow, T3[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T0 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, T0[] x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, Instant[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T1 - data type
      T2 - data type
      T3 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • errorBarY

      public <T0 extends Number> XYErrorBarDataSeriesArray errorBarY(Comparable seriesName, List<T0> x, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates an XY plot with error bars in the y direction.
      Specified by:
      errorBarY in interface Axes
      Type Parameters:
      T0 - data type
      Parameters:
      seriesName - name of the created dataset
      x - x-values
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, T1[] y, T2[] yLow, T3[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      T2 - type of the numeric data
      T3 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, List<T1> y, List<T2> yLow, List<T3> yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      T2 - type of the numeric data
      T3 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, List<T0> categories, short[] y, short[] yLow, short[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, List<T0> categories, int[] y, int[] yLow, int[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, List<T0> categories, long[] y, long[] yLow, long[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, List<T0> categories, float[] y, float[] yLow, float[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, List<T0> categories, double[] y, double[] yLow, double[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, List<T0> categories, T1[] y, T2[] yLow, T3[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      T2 - type of the numeric data
      T3 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, List<T0> categories, List<T1> y, List<T2> yLow, List<T3> yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      T2 - type of the numeric data
      T3 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, Date[] y, Date[] yLow, Date[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catErrorBar

      public <T0 extends Comparable> CategoryDataSeriesInternal catErrorBar(Comparable seriesName, T0[] categories, Instant[] y, Instant[] yLow, Instant[] yHigh)
      Description copied from interface: Axes
      Creates a category error bar plot with whiskers in the y direction.
      Specified by:
      catErrorBar in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      yLow - low value in y dimension
      yHigh - high value in y dimension
      Returns:
      dataset created by the plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, Date[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, Instant[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, short[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, int[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, long[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, float[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, double[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, T1[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal catPlot(Comparable seriesName, T0[] categories, List<T1> y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, Date[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, Instant[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, short[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, int[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, long[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, float[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, double[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, T1[] y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • catPlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal catPlot(Comparable seriesName, List<T0> categories, List<T1> y)
      Description copied from interface: Axes
      Creates a plot with discrete axis. Discrete data must not have duplicates.
      Specified by:
      catPlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - discrete data
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, T0[] categories, short[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, T0[] categories, int[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, T0[] categories, long[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, T0[] categories, float[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, T0[] categories, double[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal piePlot(Comparable seriesName, T0[] categories, T1[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal piePlot(Comparable seriesName, T0[] categories, List<T1> y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, List<T0> categories, short[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, List<T0> categories, int[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, List<T0> categories, long[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, List<T0> categories, float[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable> CategoryDataSeriesInternal piePlot(Comparable seriesName, List<T0> categories, double[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal piePlot(Comparable seriesName, List<T0> categories, T1[] y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot
    • piePlot

      public <T0 extends Comparable, T1 extends Number> CategoryDataSeriesInternal piePlot(Comparable seriesName, List<T0> categories, List<T1> y)
      Description copied from interface: Axes
      Creates a pie plot. Categorical data must not have duplicates.
      Specified by:
      piePlot in interface Axes
      Type Parameters:
      T0 - type of the categorical data
      T1 - type of the numeric data
      Parameters:
      seriesName - name of the created dataset
      categories - categories
      y - y-values
      Returns:
      dataset created for plot