Package com.illumon.iris.db.plot
Interface Axes
- All Superinterfaces:
Serializable
- All Known Subinterfaces:
Figure
- All Known Implementing Classes:
AxesImpl
,FigureImpl
,FigureWidget
,ScatterPlotMatrix
public interface Axes extends Serializable
Chart's axes.
-
Method Summary
Modifier and Type Method Description Axes
axesRemoveSeries(String... names)
Removes the series with the specifiednames
from this Axes.Axis
axis(int dim)
Gets theAxis
at dimensiondim
.CategoryDataSeries
catErrorBar(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh)
Creates a category error bar plot with whiskers in the y direction.CategoryDataSeries
catErrorBar(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, List<T0> categories, double[] values, double[] yLow, double[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, List<T0> categories, float[] values, float[] yLow, float[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, List<T0> categories, int[] values, int[] yLow, int[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, List<T0> categories, long[] values, long[] yLow, long[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, List<T0> categories, short[] values, short[] yLow, short[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number>
CategoryDataSeriescatErrorBar(Comparable seriesName, List<T0> categories, List<T1> values, List<T2> yLow, List<T3> yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number>
CategoryDataSeriescatErrorBar(Comparable seriesName, List<T0> categories, T1[] values, T2[] yLow, T3[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, double[] values, double[] yLow, double[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, float[] values, float[] yLow, float[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, int[] values, int[] yLow, int[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, long[] values, long[] yLow, long[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, short[] values, short[] yLow, short[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, DBDateTime[] values, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, Date[] values, Date[] yLow, Date[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, List<T1> values, List<T2> yLow, List<T3> yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number>
CategoryDataSeriescatErrorBar(Comparable seriesName, T0[] categories, T1[] values, T2[] yLow, T3[] yHigh)
Creates a category error bar plot with whiskers in the y direction.MultiSeries
catErrorBarBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh, String... byColumns)
Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.MultiSeries
catErrorBarBy(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh, String... byColumns)
Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.CategoryDataSeries
catHistPlot(Comparable seriesName, double[] x)
Creates a histogram with discrete axis.CategoryDataSeries
catHistPlot(Comparable seriesName, float[] x)
Creates a histogram with discrete axis.CategoryDataSeries
catHistPlot(Comparable seriesName, int[] x)
Creates a histogram with discrete axis.CategoryDataSeries
catHistPlot(Comparable seriesName, long[] x)
Creates a histogram with discrete axis.CategoryDataSeries
catHistPlot(Comparable seriesName, SelectableDataSet sds, String columnName)
Creates a histogram with discrete axis.CategoryDataSeries
catHistPlot(Comparable seriesName, Table t, String columnName)
Creates a histogram with discrete axis.<T extends Comparable>
CategoryDataSeriescatHistPlot(Comparable seriesName, List<T> x)
Creates a histogram with discrete axis.<T extends Comparable>
CategoryDataSeriescatHistPlot(Comparable seriesName, T[] x)
Creates a histogram with discrete axis.<T1 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)
Creates a plot with discrete axis.CategoryDataSeries
catPlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)
Creates a plot with discrete axis.CategoryDataSeries
catPlot(Comparable seriesName, Table t, String categories, String values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, double[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, float[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, int[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, long[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, short[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, DBDateTime[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, Date[] values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, List<T1> values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriescatPlot(Comparable seriesName, List<T0> categories, T1[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, double[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, float[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, int[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, long[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, short[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, DBDateTime[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, Date[] values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, List<T1> values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriescatPlot(Comparable seriesName, T0[] categories, T1[] values)
Creates a plot with discrete axis.MultiSeries
catPlotBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String... byColumns)
Creates a category plot per distinct grouping value specified inbyColumns
.MultiSeries
catPlotBy(Comparable seriesName, Table t, String categories, String values, String... byColumns)
Creates a category plot per distinct grouping value specified inbyColumns
.XYErrorBarDataSeries
errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y)
Creates an XY plot with error bars in the x direction.XYErrorBarDataSeries
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y)
Creates an XY plot with error bars in the x direction.MultiSeries
errorBarXBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String... byColumns)
Creates an errorBarX plot per distinct grouping value specified inbyColumns
.MultiSeries
errorBarXBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String... byColumns)
Creates an errorBarX plot per distinct grouping value specified inbyColumns
.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in both the x and y directions.XYErrorBarDataSeries
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number>
XYErrorBarDataSerieserrorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
Creates an XY plot with error bars in both the x and y directions.MultiSeries
errorBarXYBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
Creates an errorBar plot per distinct grouping value specified inbyColumns
.MultiSeries
errorBarXYBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
Creates an errorBar plot per distinct grouping value specified inbyColumns
.XYErrorBarDataSeries
errorBarY(Comparable seriesName, double[] x, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, double[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, double[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, float[] x, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, float[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, float[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, int[] x, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, int[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, int[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, long[] x, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, long[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, long[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, short[] x, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, short[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, short[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, DBDateTime[] x, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, DBDateTime[] x, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, DBDateTime[] x, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, DBDateTime[] x, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, DBDateTime[] x, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, DBDateTime[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, DBDateTime[] x, T1[] y, T2[] yLow, T3[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, Date[] x, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, Date[] x, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, Date[] x, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, Date[] x, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, Date[] x, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in the y direction.XYErrorBarDataSeries
errorBarY(Comparable seriesName, Date[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, Date[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, Date[] x, T1[] y, T2[] yLow, T3[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, List<T0> x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, List<T0> x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, List<T0> x, List<T1> y, List<T2> yLow, List<T3> yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, T0[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, T0[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
XYErrorBarDataSerieserrorBarY(Comparable seriesName, T0[] x, T1[] y, T2[] yLow, T3[] yHigh)
Creates an XY plot with error bars in the y direction.MultiSeries
errorBarYBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh, String... byColumns)
Creates a errorBarY plot per distinct grouping value specified inbyColumns
.MultiSeries
errorBarYBy(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh, String... byColumns)
Creates a errorBarY plot per distinct grouping value specified inbyColumns
.IntervalXYDataSeries
histPlot(Comparable seriesName, double[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, double[] x, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, float[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, float[] x, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, int[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, int[] x, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, long[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, long[] x, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, short[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, short[] x, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, double rangeMin, double rangeMax, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, Table counts)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, Table t, String columnName, double rangeMin, double rangeMax, int nbins)
Creates a histogram.IntervalXYDataSeries
histPlot(Comparable seriesName, Table t, String columnName, int nbins)
Creates a histogram.<T0 extends Number>
IntervalXYDataSerieshistPlot(Comparable seriesName, List<T0> x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.<T0 extends Number>
IntervalXYDataSerieshistPlot(Comparable seriesName, List<T0> x, int nbins)
Creates a histogram.<T0 extends Number>
IntervalXYDataSerieshistPlot(Comparable seriesName, T0[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.<T0 extends Number>
IntervalXYDataSerieshistPlot(Comparable seriesName, T0[] x, int nbins)
Creates a histogram.OHLCDataSeries
ohlcPlot(Comparable seriesName, IndexableNumericData time, IndexableNumericData open, IndexableNumericData high, IndexableNumericData low, IndexableNumericData close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, DBDateTime[] time, double[] open, double[] high, double[] low, double[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, DBDateTime[] time, float[] open, float[] high, float[] low, float[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, DBDateTime[] time, int[] open, int[] high, int[] low, int[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, DBDateTime[] time, long[] open, long[] high, long[] low, long[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, DBDateTime[] time, short[] open, short[] high, short[] low, short[] close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
OHLCDataSeriesohlcPlot(Comparable seriesName, DBDateTime[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
OHLCDataSeriesohlcPlot(Comparable seriesName, DBDateTime[] time, T1[] open, T2[] high, T3[] low, T4[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, Date[] time, double[] open, double[] high, double[] low, double[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, Date[] time, float[] open, float[] high, float[] low, float[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, Date[] time, int[] open, int[] high, int[] low, int[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, Date[] time, long[] open, long[] high, long[] low, long[] close)
Creates an open-high-low-close plot.OHLCDataSeries
ohlcPlot(Comparable seriesName, Date[] time, short[] open, short[] high, short[] low, short[] close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
OHLCDataSeriesohlcPlot(Comparable seriesName, Date[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
OHLCDataSeriesohlcPlot(Comparable seriesName, Date[] time, T1[] open, T2[] high, T3[] low, T4[] close)
Creates an open-high-low-close plot.MultiSeries
ohlcPlotBy(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)
Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.MultiSeries
ohlcPlotBy(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)
Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.<T1 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)
Creates a pie plot.CategoryDataSeries
piePlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)
Creates a pie plot.CategoryDataSeries
piePlot(Comparable seriesName, Table t, String categories, String values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, List<T0> categories, double[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, List<T0> categories, float[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, List<T0> categories, int[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, List<T0> categories, long[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, List<T0> categories, short[] values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriespiePlot(Comparable seriesName, List<T0> categories, List<T1> values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriespiePlot(Comparable seriesName, List<T0> categories, T1[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, T0[] categories, double[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, T0[] categories, float[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, T0[] categories, int[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, T0[] categories, long[] values)
Creates a pie plot.<T0 extends Comparable>
CategoryDataSeriespiePlot(Comparable seriesName, T0[] categories, short[] values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriespiePlot(Comparable seriesName, T0[] categories, List<T1> values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
CategoryDataSeriespiePlot(Comparable seriesName, T0[] categories, T1[] values)
Creates a pie plot.XYDataSeries
plot(Comparable seriesName, double[] x, double[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, double[] x, float[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, double[] x, int[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, double[] x, long[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, double[] x, short[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, double[] x, DBDateTime[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, double[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, double[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, double[] x, T1[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, float[] x, double[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, float[] x, float[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, float[] x, int[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, float[] x, long[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, float[] x, short[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, float[] x, DBDateTime[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, float[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, float[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, float[] x, T1[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, int[] x, double[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, int[] x, float[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, int[] x, int[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, int[] x, long[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, int[] x, short[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, int[] x, DBDateTime[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, int[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, int[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, int[] x, T1[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, long[] x, double[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, long[] x, float[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, long[] x, int[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, long[] x, long[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, long[] x, short[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, long[] x, DBDateTime[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, long[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, long[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, long[] x, T1[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, short[] x, double[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, short[] x, float[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, short[] x, int[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, short[] x, long[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, short[] x, short[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, short[] x, DBDateTime[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, short[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, short[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, short[] x, T1[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, IndexableNumericData x, IndexableNumericData y, boolean hasXTimeAxis, boolean hasYTimeAxis)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, SelectableDataSet sds, String x, String y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Table t, String x, String y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, DBDateTime[] x, double[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, DBDateTime[] x, float[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, DBDateTime[] x, int[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, DBDateTime[] x, long[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, DBDateTime[] x, short[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, DBDateTime[] x, DBDateTime[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, DBDateTime[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, DBDateTime[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, DBDateTime[] x, T1[] y)
Creates an XY plot.<T extends Number>
XYDataSeriesFunctionplot(Comparable seriesName, groovy.lang.Closure<T> function)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Date[] x, double[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Date[] x, float[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Date[] x, int[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Date[] x, long[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Date[] x, short[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Date[] x, DBDateTime[] y)
Creates an XY plot.XYDataSeries
plot(Comparable seriesName, Date[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, Date[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
XYDataSeriesplot(Comparable seriesName, Date[] x, T1[] y)
Creates an XY plot.XYDataSeriesFunction
plot(Comparable seriesName, DoubleUnaryOperator function)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, double[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, float[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, int[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, long[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, short[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, DBDateTime[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, Date[] y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, List<T1> y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
XYDataSeriesplot(Comparable seriesName, List<T0> x, T1[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, double[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, float[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, int[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, long[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, short[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, DBDateTime[] y)
Creates an XY plot.<T0 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, Date[] y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, List<T1> y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
XYDataSeriesplot(Comparable seriesName, T0[] x, T1[] y)
Creates an XY plot.MultiSeries
plotBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String... byColumns)
Creates an XY plot per distinct grouping value specified inbyColumns
.MultiSeries
plotBy(Comparable seriesName, Table t, String x, String y, String... byColumns)
Creates an XY plot per distinct grouping value specified inbyColumns
.Axes
plotStyle(PlotStyle style)
Sets thePlotStyle
of this Axes.Axes
plotStyle(String style)
Sets thePlotStyle
of this Axes.Series
series(int id)
Gets a data series.Series
series(Comparable name)
Gets a data series.Axes
twin()
Creates a new Axes instance which shares the sameAxis
objects as this Axes.Axes
twin(int dim)
Creates a new Axes instance which shares the sameAxis
objects as this Axes.Axes
twin(String name)
Creates a new Axes instance which shares the sameAxis
objects as this Axes.Axes
twin(String name, int dim)
Creates a new Axes instance which shares the sameAxis
objects as this Axes.Axes
twinX()
Creates a new Axes instance which shares the same x-Axis
as this Axes.Axes
twinX(String name)
Creates a new Axes instance which shares the same x-Axis
as this Axes.Axes
twinY()
Creates a new Axes instance which shares the same y-Axis
as this Axes.Axes
twinY(String name)
Creates a new Axes instance which shares the same y-Axis
as this Axes.Axis
xAxis()
Gets theAxis
representing the x-axisAxes
xBusinessTime()
Axes
xBusinessTime(SelectableDataSet sds, String valueColumn)
Axes
xBusinessTime(BusinessCalendar calendar)
Axes
xColor(Paint color)
Sets the color of the x-Axis
Axes
xColor(String color)
Sets the color of the x-Axis
Axes
xFormat(AxisFormat format)
Sets theAxisFormat
of the x-Axis
Axes
xFormatPattern(String pattern)
Sets the format pattern of the x-Axis
Axes
xInvert()
Inverts the x-Axis
so that larger values are closer to the origin.Axes
xInvert(boolean invert)
Inverts the x-Axis
so that larger values are closer to the origin.Axes
xLabel(String label)
Sets the label of the x-Axis
Axes
xLabelFont(Font font)
Sets the font for the x-Axis
label.Axes
xLabelFont(String family, String style, int size)
Sets the font for the x-Axis
label.Axes
xLog()
Sets theAxisTransform
of the x-Axis
to log base 10Axes
xMax(double max)
Sets the maximum of the x-Axis
.Axes
xMax(SelectableDataSet sds, String valueColumn)
Sets the maximum of the x-Axis
.Axes
xMin(double min)
Sets the minimum of the x-Axis
.Axes
xMin(SelectableDataSet sds, String valueColumn)
Sets the minimum of the x-Axis
.Axes
xMinorTicks(int count)
Sets the number of minor ticks between consecutive major ticks in the x-Axis
.Axes
xMinorTicksVisible(boolean visible)
Sets whether the x-Axis
minor ticks are visible.Axes
xRange(double min, double max)
Sets the range of the x-Axis
Axes
xTickLabelAngle(double angle)
Sets the angle the tick labels the x-Axis
are drawn at.Axes
xTicks(double gapBetweenTicks)
Sets the x-Axis
ticks.Axes
xTicks(double[] tickLocations)
Sets the x-Axis
ticks.Axes
xTicksFont(Font font)
Sets the font for the x-Axis
ticks.Axes
xTicksFont(String family, String style, int size)
Sets the font for the x-Axis
ticks.Axes
xTicksVisible(boolean visible)
Sets whether the x-Axis
ticks are visible.Axes
xTransform(AxisTransform transform)
Sets theAxisTransform
of the x-Axis
Axis
yAxis()
Gets theAxis
representing the y-axisAxes
yBusinessTime()
Axes
yBusinessTime(SelectableDataSet sds, String valueColumn)
Axes
yBusinessTime(BusinessCalendar calendar)
Axes
yColor(Paint color)
Sets the color of the y-Axis
Axes
yColor(String color)
Sets the color of the y-Axis
Axes
yFormat(AxisFormat format)
Sets theAxisFormat
of the y-Axis
Axes
yFormatPattern(String pattern)
Sets the format pattern of the y-Axis
Axes
yInvert()
Inverts the y-Axis
so that larger values are closer to the origin.Axes
yInvert(boolean invert)
Inverts the y-Axis
so that larger values are closer to the origin.Axes
yLabel(String label)
Sets the label of the y-Axis
Axes
yLabelFont(Font font)
Sets the font for the y-Axis
label.Axes
yLabelFont(String family, String style, int size)
Sets the font for the y-Axis
label.Axes
yLog()
Sets theAxisTransform
of the y-Axis
to log base 10Axes
yMax(double max)
Sets the maximum of the y-Axis
.Axes
yMax(SelectableDataSet sds, String valueColumn)
Sets the maximum of the y-Axis
.Axes
yMin(double min)
Sets the minimum of the y-Axis
.Axes
yMin(SelectableDataSet sds, String valueColumn)
Sets the minimum of the y-Axis
.Axes
yMinorTicks(int count)
Sets the number of minor ticks between consecutive major ticks in the y-Axis
.Axes
yMinorTicksVisible(boolean visible)
Sets whether the y-Axis
minor ticks are visible.Axes
yRange(double min, double max)
Sets the range of the y-Axis
Axes
yTickLabelAngle(double angle)
Sets the angle the tick labels the y-Axis
are drawn at.Axes
yTicks(double gapBetweenTicks)
Sets the y-Axis
ticks.Axes
yTicks(double[] tickLocations)
Sets the y-Axis
ticks.Axes
yTicksFont(Font font)
Sets the font for the y-Axis
ticks.Axes
yTicksFont(String family, String style, int size)
Sets the font for the y-Axis
ticks.Axes
yTicksVisible(boolean visible)
Sets whether the y-Axis
ticks are visible.Axes
yTransform(AxisTransform transform)
Sets theAxisTransform
of the y-Axis
-
Method Details
-
axesRemoveSeries
Removes the series with the specifiednames
from this Axes.- Parameters:
names
- series names- Returns:
- this Chart
-
series
Gets a data series.- Parameters:
id
- series id.- Returns:
- selected data series.
-
series
Gets a data series.- Parameters:
name
- series name.- Returns:
- selected data series.
-
plotStyle
Sets thePlotStyle
of this Axes.- Parameters:
style
- style- Returns:
- this Axes
-
plotStyle
Sets thePlotStyle
of this Axes.- Parameters:
style
- style- Returns:
- this Axes
-
twin
Axes twin()Creates a new Axes instance which shares the sameAxis
objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of theAxis
) but may have, for example, a different PlotStyle.- Returns:
- the new Axes instance. The axes name will be equal to the string representation of the axes id.
-
twin
Creates a new Axes instance which shares the sameAxis
objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of theAxis
) but may have, for example, a different PlotStyle.- Parameters:
name
- Name for the axes- Returns:
- the new Axes instance
-
twin
Creates a new Axes instance which shares the sameAxis
objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of theAxis
) but may have, for example, a different PlotStyle.- Parameters:
dim
-Axis
dimension to share. The x-axis is dimension 0, y-axis is dimension 1, and the z-axis is dimension 2.- Returns:
- the new Axes instance. The axes name will be equal to the string representation of the axes id.
-
twin
Creates a new Axes instance which shares the sameAxis
objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of theAxis
) but may have, for example, a different PlotStyle.- Parameters:
name
- name for the axesdim
-Axis
dimension to share. The x-axis is dimension 0, y-axis is dimension 1, and the z-axis is dimension 2.- Returns:
- the new Axes instance
-
twinX
Axes twinX()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.- Returns:
- the new Axes instance. The axes name will be equal to the string representation of the axes id.
-
twinX
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.- Parameters:
name
- Name for the axes- Returns:
- the new Axes instance
-
twinY
Axes twinY()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.- Returns:
- the new Axes instance. The axes name will be equal to the string representation of the axes id.
-
twinY
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.- Parameters:
name
- Name for the axes- Returns:
- the new Axes instance
-
axis
Gets theAxis
at dimensiondim
. The x-axis is dimension 0, y-axis dimension 1, and the z-axis dimension 2. -
xAxis
Axis xAxis()Gets theAxis
representing the x-axis- Returns:
- x-dimension
Axis
-
yAxis
Axis yAxis()Gets theAxis
representing the y-axis- Returns:
- y-dimension
Axis
-
xFormat
Sets theAxisFormat
of the x-Axis
- Parameters:
format
- format- Returns:
- this Axes
-
yFormat
Sets theAxisFormat
of the y-Axis
- Parameters:
format
- format- Returns:
- this Axes
-
xFormatPattern
Sets the format pattern of the x-Axis
- Parameters:
pattern
- pattern- Returns:
- this Axes
-
yFormatPattern
Sets the format pattern of the y-Axis
- Parameters:
pattern
- pattern- Returns:
- this Axes
-
xColor
Sets the color of the x-Axis
- Parameters:
color
- color- Returns:
- this Axes
-
xColor
Sets the color of the x-Axis
- Parameters:
color
- color- Returns:
- this Axes
-
yColor
Sets the color of the y-Axis
- Parameters:
color
- color- Returns:
- this Axes
-
yColor
Sets the color of the y-Axis
- Parameters:
color
- color- Returns:
- this Axes
-
xLabel
Sets the label of the x-Axis
- Parameters:
label
- label- Returns:
- this Axes
-
yLabel
Sets the label of the y-Axis
- Parameters:
label
- pattern- Returns:
- this Axes
-
xLabelFont
Sets the font for the x-Axis
label.- Parameters:
font
- font- Returns:
- this Axis
-
yLabelFont
Sets the font for the y-Axis
label.- Parameters:
font
- font- Returns:
- this Axis
-
xLabelFont
Sets the font for the x-Axis
label.- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
yLabelFont
Sets the font for the y-Axis
label.- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
xTicksFont
Sets the font for the x-Axis
ticks.- Parameters:
font
- font- Returns:
- this Axis
-
yTicksFont
Sets the font for the y-Axis
ticks.- Parameters:
font
- font- Returns:
- this Axis
-
xTicksFont
Sets the font for the x-Axis
ticks.- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
yTicksFont
Sets the font for the y-Axis
ticks.- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
xTransform
Sets theAxisTransform
of the x-Axis
- Parameters:
transform
- transform- Returns:
- this Axes
-
yTransform
Sets theAxisTransform
of the y-Axis
- Parameters:
transform
- transform- Returns:
- this Axes
-
xLog
Axes xLog()Sets theAxisTransform
of the x-Axis
to log base 10- Returns:
- this Axes
-
yLog
Axes yLog()Sets theAxisTransform
of the y-Axis
to log base 10- Returns:
- this Axes
-
xBusinessTime
- Parameters:
calendar
- business calendar for theAxisTransformBusinessCalendar
- Returns:
- this Axes using the
calendar
for the x-Axis
business calendar.
-
yBusinessTime
- Parameters:
calendar
- business calendar for theAxisTransformBusinessCalendar
- Returns:
- this Axes using the
calendar
for the y-Axis
business calendar.
-
xBusinessTime
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing the business calendar.valueColumn
- name of a column containing String values, where each value is the name of aBusinessCalendar
.- 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
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing the business calendar.valueColumn
- name of a column containing String values, where each value is the name of aBusinessCalendar
.- 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
Axes xBusinessTime()- Returns:
- this Axes using the default
BusinessCalendar
for the x-Axis
.
-
yBusinessTime
Axes yBusinessTime()- Returns:
- this Axes using the default
BusinessCalendar
for the y-Axis
.
-
xInvert
Axes xInvert()Inverts the x-Axis
so that larger values are closer to the origin.- Returns:
- this Axes
-
xInvert
Inverts the x-Axis
so that larger values are closer to the origin.- Parameters:
invert
- if true, larger values will be closer to the origin- Returns:
- this Axes
-
yInvert
Axes yInvert()Inverts the y-Axis
so that larger values are closer to the origin.- Returns:
- this Axes
-
yInvert
Inverts the y-Axis
so that larger values are closer to the origin.- Parameters:
invert
- if true, larger values will be closer to the origin- Returns:
- this Axes
-
xRange
Sets the range of the x-Axis
- Parameters:
min
- minimum of the rangemax
- maximum of the range- Returns:
- this Axes
-
yRange
Sets the range of the y-Axis
- Parameters:
min
- minimum of the rangemax
- maximum of the range- Returns:
- this Axes
-
xMin
Sets the minimum of the x-Axis
.- Parameters:
min
- minimum of the x-range- Returns:
- this Axes
-
yMin
Sets the minimum of the y-Axis
.- Parameters:
min
- minimum of the y-range- Returns:
- this Axes
-
xMin
Sets the minimum of the x-Axis
.- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)valueColumn
- column insds
. The value in row 0 is used for the minimum.- Returns:
- this Axes
-
yMin
Sets the minimum of the y-Axis
.- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)valueColumn
- column insds
. The value in row 0 is used for the minimum.- Returns:
- this Axes
-
xMax
Sets the maximum of the x-Axis
.- Parameters:
max
- maximum of the x-range- Returns:
- this Axes
-
yMax
Sets the maximum of the y-Axis
.- Parameters:
max
- maximum of the y-range- Returns:
- this Axes
-
xMax
Sets the maximum of the x-Axis
.- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)valueColumn
- column insds
. The value in row 0 is used for the maximum.- Returns:
- this Axes
-
yMax
Sets the maximum of the y-Axis
.- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)valueColumn
- column insds
. The value in row 0 is used for the maximum.- Returns:
- this Axes
-
xTicksVisible
Sets whether the x-Axis
ticks are visible.- Parameters:
visible
- whether the ticks are visible- Returns:
- this Axes
-
yTicksVisible
Sets whether the y-Axis
ticks are visible.- Parameters:
visible
- whether the ticks are visible- Returns:
- this Axes
-
xTicks
Sets the x-Axis
ticks.- Parameters:
gapBetweenTicks
- spacing between major ticks- Returns:
- this Axes
-
yTicks
Sets the y-Axis
ticks.- Parameters:
gapBetweenTicks
- spacing between major ticks- Returns:
- this Axes
-
xTicks
Sets the x-Axis
ticks.- Parameters:
tickLocations
- locations of the major ticks- Returns:
- this Axes
-
yTicks
Sets the y-Axis
ticks.- Parameters:
tickLocations
- locations of the major ticks- Returns:
- this Axes
-
xMinorTicksVisible
Sets whether the x-Axis
minor ticks are visible.- Parameters:
visible
- whether the minor ticks are visible- Returns:
- this Axes
-
yMinorTicksVisible
Sets whether the y-Axis
minor ticks are visible.- Parameters:
visible
- whether the minor ticks are visible- Returns:
- this Axes
-
xMinorTicks
Sets the number of minor ticks between consecutive major ticks in the x-Axis
. These minor ticks are equally spaced.- Parameters:
count
- number of minor ticks between consecutive major ticks.- Returns:
- this Axes
-
yMinorTicks
Sets the number of minor ticks between consecutive major ticks in the y-Axis
. These minor ticks are equally spaced.- Parameters:
count
- number of minor ticks between consecutive major ticks.- Returns:
- this Axes
-
xTickLabelAngle
Sets the angle the tick labels the x-Axis
are drawn at.- Parameters:
angle
- angle in degrees- Returns:
- this Axes
-
yTickLabelAngle
Sets the angle the tick labels the y-Axis
are drawn at.- Parameters:
angle
- angle in degrees- Returns:
- this Axes
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarXYBy
MultiSeries errorBarXYBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)Creates an errorBar plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimensionbyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarXYBy
MultiSeries errorBarXYBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)Creates an errorBar plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimensionbyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable data- Returns:
- dataset created for plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable data- Returns:
- dataset created for plot
-
errorBarXBy
MultiSeries errorBarXBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String... byColumns)Creates an errorBarX plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarXBy
MultiSeries errorBarXBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String... byColumns)Creates an errorBarX plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable databyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable datay
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarYBy
MultiSeries errorBarYBy(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh, String... byColumns)Creates a errorBarY plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable datay
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimensionbyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarYBy
MultiSeries errorBarYBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh, String... byColumns)Creates a errorBarY plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimensionbyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
catErrorBar
CategoryDataSeries catErrorBar(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh)Creates a category error bar plot with whiskers in the y direction.- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
that holds the discrete datavalues
- column int
that holds the numeric datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
catErrorBar
CategoryDataSeries catErrorBar(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh)Creates a category error bar plot with whiskers in the y direction.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table).categories
- column insds
that holds the discrete datavalues
- column insds
that holds the numeric datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
catErrorBarBy
MultiSeries catErrorBarBy(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh, String... byColumns)Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
that holds the discrete datavalues
- column int
that holds the numeric datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimensionbyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
catErrorBarBy
MultiSeries catErrorBarBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh, String... byColumns)Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table).categories
- column insds
that holds the discrete datavalues
- column insds
that holds the numeric datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimensionbyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetfunction
- function to plot- Returns:
- dataset created for plot
-
plot
<T extends Number> XYDataSeriesFunction plot(Comparable seriesName, groovy.lang.Closure<T> function)Creates an XY plot.- Type Parameters:
T
-function
input type- Parameters:
seriesName
- name of the created datasetfunction
- function to plot- Returns:
- dataset created for plot
-
plot
XYDataSeries plot(Comparable seriesName, IndexableNumericData x, IndexableNumericData y, boolean hasXTimeAxis, boolean hasYTimeAxis)Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valueshasXTimeAxis
- whether to treat the x-values as time datahasYTimeAxis
- whether to treat the y-values as time data- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable datay
- column int
that holds the y-variable data- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable data- Returns:
- dataset created for plot
-
plotBy
Creates an XY plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable datay
- column int
that holds the y-variable databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
plotBy
MultiSeries plotBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String... byColumns)Creates an XY plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, IndexableNumericData time, IndexableNumericData open, IndexableNumericData high, IndexableNumericData low, IndexableNumericData close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created for plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasett
- tabletimeCol
- column int
that holds the time dataopenCol
- column int
that holds the open datahighCol
- column int
that holds the high datalowCol
- column int
that holds the low datacloseCol
- column int
that holds the close data- Returns:
- dataset created for plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)timeCol
- column insds
that holds the time dataopenCol
- column insds
that holds the open datahighCol
- column insds
that holds the high datalowCol
- column insds
that holds the low datacloseCol
- column insds
that holds the close data- Returns:
- dataset created for plot
-
ohlcPlotBy
MultiSeries ohlcPlotBy(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasett
- tabletimeCol
- column int
that holds the time dataopenCol
- column int
that holds the open datahighCol
- column int
that holds the high datalowCol
- column int
that holds the low datacloseCol
- column int
that holds the close databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
ohlcPlotBy
MultiSeries ohlcPlotBy(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)timeCol
- column insds
that holds the time dataopenCol
- column insds
that holds the open datahighCol
- column insds
that holds the high datalowCol
- column insds
that holds the low datacloseCol
- column insds
that holds the close databyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
histPlot
Creates a histogram.- Parameters:
seriesName
- name of the created datasetcounts
- table- Returns:
- dataset created for plot
- Throws:
IllegalArgumentException
-counts
must contain columns "BinMin", "BinMid", "BinMax", "Count"
-
histPlot
Creates a histogram.- Parameters:
seriesName
- name of the created datasett
- tablecolumnName
- column int
nbins
- number of bins in the resulting histogram- Returns:
- dataset created for plot
- Throws:
IllegalArgumentException
-columnName
must be a numeric column int
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, Table t, String columnName, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasett
- tablecolumnName
- column int
rangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins in the resulting histogram- Returns:
- dataset created for plot
- Throws:
IllegalArgumentException
-columnName
must be a numeric column int
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)columnName
- column insds
nbins
- number of bins in the resulting histogram- Returns:
- dataset created for plot
- Throws:
IllegalArgumentException
-columnName
must be a numeric column insds
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)columnName
- column insds
rangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins in the resulting histogram- Returns:
- dataset created for plot
- Throws:
IllegalArgumentException
-columnName
must be a numeric column insds
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Parameters:
seriesName
- name of the created datasett
- tablecolumnName
- column int
- Returns:
- dataset created for plot
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)columnName
- column insds
- Returns:
- dataset created for plot
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Type Parameters:
T
- data type of the categorical data- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Type Parameters:
T
- data type of the categorical data- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catPlot
<T1 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T1
- data type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
Creates a plot with discrete axis. Discrete data must not have duplicates.- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
holding discrete datavalues
- column int
holding numeric data- Returns:
- dataset created for plot
-
catPlot
CategoryDataSeries catPlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)categories
- column insds
holding discrete datavalues
- column insds
holding numeric data- Returns:
- dataset created for plot
-
catPlotBy
MultiSeries catPlotBy(Comparable seriesName, Table t, String categories, String values, String... byColumns)Creates a category plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
holding discrete datavalues
- column int
holding numeric databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
catPlotBy
MultiSeries catPlotBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String... byColumns)Creates a category plot per distinct grouping value specified inbyColumns
.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)categories
- column insds
holding discrete datavalues
- column insds
holding numeric databyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
piePlot
<T1 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T1
- data type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
Creates a pie plot. Categorical data must not have duplicates.- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
with categorical datavalues
- column int
with numerical data- Returns:
- dataset created for plot
-
piePlot
CategoryDataSeries piePlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)Creates a pie plot. Categorical data must not have duplicates.- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)categories
- column insds
with categorical datavalues
- column insds
with numerical data- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data typeT1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
<T0 extends Number, T1 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, List<T1> y)Creates an XY plot.- Type Parameters:
T0
- data typeT1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
Creates an XY plot.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
<T0 extends Number, T1 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, T1[] y)Creates an XY plot.- Type Parameters:
T0
- data typeT1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
plot
<T0 extends Number, T1 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, List<T1> y)Creates an XY plot.- Type Parameters:
T0
- data typeT1
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-values- Returns:
- dataset created for plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, short[] open, short[] high, short[] low, short[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, short[] open, short[] high, short[] low, short[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, int[] open, int[] high, int[] low, int[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, int[] open, int[] high, int[] low, int[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, long[] open, long[] high, long[] low, long[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, long[] open, long[] high, long[] low, long[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, float[] open, float[] high, float[] low, float[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, float[] open, float[] high, float[] low, float[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, double[] open, double[] high, double[] low, double[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
OHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, double[] open, double[] high, double[] low, double[] close)Creates an open-high-low-close plot.- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, T1[] open, T2[] high, T3[] low, T4[] close)Creates an open-high-low-close plot.- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, T1[] open, T2[] high, T3[] low, T4[] close)Creates an open-high-low-close plot.- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)Creates an open-high-low-close plot.- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> OHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)Creates an open-high-low-close plot.- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
histPlot
Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datanbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datanbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datanbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datanbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datanbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
Creates a histogram.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- datanbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
Creates a histogram.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- datanbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, short[] x, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, int[] x, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, long[] x, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, float[] x, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
IntervalXYDataSeries histPlot(Comparable seriesName, double[] x, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
<T0 extends Number> IntervalXYDataSeries histPlot(Comparable seriesName, T0[] x, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
<T0 extends Number> IntervalXYDataSeries histPlot(Comparable seriesName, List<T0> x, double rangeMin, double rangeMax, int nbins)Creates a histogram.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y, short[] yLow, short[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y, int[] yLow, int[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y, long[] yLow, long[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y, float[] yLow, float[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y, double[] yLow, double[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y, short[] yLow, short[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y, int[] yLow, int[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y, long[] yLow, long[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y, float[] yLow, float[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y, double[] yLow, double[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y, short[] yLow, short[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y, int[] yLow, int[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y, long[] yLow, long[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y, float[] yLow, float[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y, double[] yLow, double[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
XYErrorBarDataSeries errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T3 extends Number, T4 extends Number, T5 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in both the x and y directions.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
XYErrorBarDataSeries errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
<T0 extends Number, T1 extends Number, T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y)Creates an XY plot with error bars in the x direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, short[] x, short[] y, short[] yLow, short[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, long[] x, long[] y, long[] yLow, long[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, float[] x, float[] y, float[] yLow, float[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, double[] x, double[] y, double[] yLow, double[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, T0[] x, T1[] y, T2[] yLow, T3[] yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, List<T0> x, List<T1> y, List<T2> yLow, List<T3> yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, short[] y, short[] yLow, short[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, short[] x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, int[] x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, long[] y, long[] yLow, long[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, long[] x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, float[] y, float[] yLow, float[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, float[] x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, double[] y, double[] yLow, double[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, double[] x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, T1[] y, T2[] yLow, T3[] yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, T0[] x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, List<T0> x, Date[] y, Date[] yLow, Date[] yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, short[] y, short[] yLow, short[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, short[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, int[] y, int[] yLow, int[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, int[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, long[] y, long[] yLow, long[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, long[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, float[] y, float[] yLow, float[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, float[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, double[] y, double[] yLow, double[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
XYErrorBarDataSeries errorBarY(Comparable seriesName, double[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, T1[] y, T2[] yLow, T3[] yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, T0[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T1 extends Number, T2 extends Number, T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, List<T0> x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Creates an XY plot with error bars in the y direction.- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, short[] values, short[] yLow, short[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, int[] values, int[] yLow, int[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, long[] values, long[] yLow, long[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, float[] values, float[] yLow, float[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, double[] values, double[] yLow, double[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, T1[] values, T2[] yLow, T3[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, List<T1> values, List<T2> yLow, List<T3> yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, short[] values, short[] yLow, short[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, int[] values, int[] yLow, int[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, long[] values, long[] yLow, long[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, float[] values, float[] yLow, float[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, double[] values, double[] yLow, double[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, T1[] values, T2[] yLow, T3[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, List<T1> values, List<T2> yLow, List<T3> yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, Date[] values, Date[] yLow, Date[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, DBDateTime[] values, DBDateTime[] yLow, DBDateTime[] yHigh)Creates a category error bar plot with whiskers in the y direction.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, Date[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, DBDateTime[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, short[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, int[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, long[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, float[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, double[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, T1[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, List<T1> values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, Date[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, DBDateTime[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, short[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, int[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, long[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, float[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, double[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, T1[] values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
catPlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, List<T1> values)Creates a plot with discrete axis. Discrete data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric data- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, short[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, int[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, long[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, float[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, double[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, T1[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, List<T1> values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, short[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, int[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, long[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, float[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, double[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, T1[] values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-
piePlot
<T0 extends Comparable, T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, List<T1> values)Creates a pie plot. Categorical data must not have duplicates.- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- categoriesvalues
- data values- Returns:
- dataset created for plot
-