public interface Axes extends Serializable
| Modifier and Type | Method and Description |
|---|---|
Axes |
axesRemoveSeries(String... names)
Removes the series with the specified
names from this Axes. |
Axis |
axis(int dim)
Gets the
Axis at dimension dim. |
<T0 extends Comparable> |
catErrorBar(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> |
catErrorBar(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> |
catErrorBar(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,T1 extends Number,T2 extends Number,T3 extends Number> |
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.
|
<T0 extends Comparable> |
catErrorBar(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> |
catErrorBar(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> |
catErrorBar(Comparable seriesName,
List<T0> categories,
T1[] values,
T2[] yLow,
T3[] yHigh)
Creates a category error bar plot with whiskers in the y direction.
|
CategoryDataSeries |
catErrorBar(Comparable seriesName,
SelectableDataSet sds,
String categories,
String values,
String yLow,
String yHigh)
Creates an plot with a discrete x-axis and error bars in the y direction.
|
<T0 extends Comparable> |
catErrorBar(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> |
catErrorBar(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> |
catErrorBar(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> |
catErrorBar(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> |
catErrorBar(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,T1 extends Number,T2 extends Number,T3 extends Number> |
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.
|
<T0 extends Comparable> |
catErrorBar(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> |
catErrorBar(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,T1 extends Number,T2 extends Number,T3 extends Number> |
catErrorBar(Comparable seriesName,
T0[] categories,
T1[] values,
T2[] yLow,
T3[] 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 an plot with a discrete x-axis and error bars 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 in
byColumns. |
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 in
byColumns. |
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.
|
<T extends Comparable> |
catHistPlot(Comparable seriesName,
List<T> 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.
|
<T extends Comparable> |
catHistPlot(Comparable seriesName,
T[] x)
Creates a histogram with discrete axis.
|
CategoryDataSeries |
catHistPlot(Comparable seriesName,
Table t,
String columnName)
Creates a histogram with discrete axis.
|
<T1 extends Comparable> |
catPlot(Comparable seriesName,
IndexableData<T1> categories,
IndexableNumericData values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
List<T0> categories,
Date[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
List<T0> categories,
DBDateTime[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
List<T0> categories,
double[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
List<T0> categories,
float[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
List<T0> categories,
int[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable,T1 extends Number> |
catPlot(Comparable seriesName,
List<T0> categories,
List<T1> values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
List<T0> categories,
long[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
List<T0> categories,
short[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable,T1 extends Number> |
catPlot(Comparable seriesName,
List<T0> categories,
T1[] values)
Creates a plot with discrete axis.
|
CategoryDataSeries |
catPlot(Comparable seriesName,
SelectableDataSet sds,
String categories,
String values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
T0[] categories,
Date[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
T0[] categories,
DBDateTime[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
T0[] categories,
double[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
T0[] categories,
float[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
T0[] categories,
int[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable,T1 extends Number> |
catPlot(Comparable seriesName,
T0[] categories,
List<T1> values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
T0[] categories,
long[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable> |
catPlot(Comparable seriesName,
T0[] categories,
short[] values)
Creates a plot with discrete axis.
|
<T0 extends Comparable,T1 extends Number> |
catPlot(Comparable seriesName,
T0[] categories,
T1[] 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,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
Date[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
DBDateTime[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
double[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
float[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
int[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
List<T2> values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
long[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
short[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
List<T1> zCategories,
T2[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
Date[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
DBDateTime[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
double[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
float[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
int[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
List<T2> values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
long[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
short[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
List<T0> xCategories,
T1[] zCategories,
T2[] values)
Creates a 3Dplot with discrete axes.
|
CategoryDataSeries3D |
catPlot3d(Comparable seriesName,
SelectableDataSet sds,
String xCategoriesColumn,
String zCategoriesColumn,
String valuesColumn)
Creates a plot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
Date[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
DBDateTime[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
double[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
float[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
int[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
List<T2> values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
long[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
short[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
List<T1> zCategories,
T2[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
Date[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
DBDateTime[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
double[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
float[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
int[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
List<T2> values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
long[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
short[] values)
Creates a 3Dplot with discrete axes.
|
<T0 extends Comparable,T1 extends Comparable,T2 extends Number> |
catPlot3d(Comparable seriesName,
T0[] xCategories,
T1[] zCategories,
T2[] values)
Creates a 3Dplot with discrete axes.
|
CategoryDataSeries3D |
catPlot3d(Comparable seriesName,
Table t,
String xCategoriesColumn,
String zCategoriesColumn,
String valuesColumn)
Creates a plot with discrete axes.
|
MultiSeries |
catPlot3dBy(Comparable seriesName,
Table t,
String xCategoriesColumn,
String zCategoriesColumn,
String valuesColumn,
String... byColumns)
Creates a 3D category plot per distinct grouping value specified in
byColumns. |
MultiSeries |
catPlotBy(Comparable seriesName,
SelectableDataSet sds,
String categories,
String values,
String... byColumns)
Creates a category plot per distinct grouping value specified in
byColumns. |
MultiSeries |
catPlotBy(Comparable seriesName,
Table t,
String categories,
String values,
String... byColumns)
Creates a category plot per distinct grouping value specified in
byColumns. |
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
double[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
float[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
int[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T3 extends Number> |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
List<T3> y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
long[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
short[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T3 extends Number> |
errorBarX(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
T3[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
double[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
float[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
int[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T3 extends Number> |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
List<T3> y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
long[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
short[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T3 extends Number> |
errorBarX(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
T3[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
double[] x,
double[] xLow,
double[] xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
double[] x,
double[] xLow,
double[] xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
double[] x,
double[] xLow,
double[] xHigh,
double[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
float[] x,
float[] xLow,
float[] xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
float[] x,
float[] xLow,
float[] xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
float[] x,
float[] xLow,
float[] xHigh,
float[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
int[] x,
int[] xLow,
int[] xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
int[] x,
int[] xLow,
int[] xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
int[] x,
int[] xLow,
int[] xHigh,
int[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarX(Comparable seriesName,
List<T0> x,
List<T1> xLow,
List<T2> xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarX(Comparable seriesName,
List<T0> x,
List<T1> xLow,
List<T2> xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarX(Comparable seriesName,
List<T0> x,
List<T1> xLow,
List<T2> xHigh,
List<T3> y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
long[] x,
long[] xLow,
long[] xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
long[] x,
long[] xLow,
long[] xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
long[] x,
long[] xLow,
long[] xHigh,
long[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
SelectableDataSet sds,
String x,
String xLow,
String xHigh,
String y)
Creates an XY plot of the data with error bars in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
short[] x,
short[] xLow,
short[] xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
short[] x,
short[] xLow,
short[] xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
short[] x,
short[] xLow,
short[] xHigh,
short[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarX(Comparable seriesName,
T0[] x,
T1[] xLow,
T2[] xHigh,
Date[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarX(Comparable seriesName,
T0[] x,
T1[] xLow,
T2[] xHigh,
DBDateTime[] y)
Creates a error bar plot with whiskers in the x direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarX(Comparable seriesName,
T0[] x,
T1[] xLow,
T2[] xHigh,
T3[] y)
Creates a error bar plot with whiskers in the x direction.
|
XYErrorBarDataSeries |
errorBarX(Comparable seriesName,
Table t,
String x,
String xLow,
String xHigh,
String y)
Creates an XY plot of the data 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 in
byColumns. |
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 in
byColumns. |
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
double[] y,
double[] yLow,
double[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
float[] y,
float[] yLow,
float[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
int[] y,
int[] yLow,
int[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T3 extends Number,T4 extends Number,T5 extends Number> |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
List<T3> y,
List<T4> yLow,
List<T5> yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
long[] y,
long[] yLow,
long[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
short[] y,
short[] yLow,
short[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T3 extends Number,T4 extends Number,T5 extends Number> |
errorBarXY(Comparable seriesName,
Date[] x,
Date[] xLow,
Date[] xHigh,
T3[] y,
T4[] yLow,
T5[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
double[] y,
double[] yLow,
double[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
float[] y,
float[] yLow,
float[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
int[] y,
int[] yLow,
int[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T3 extends Number,T4 extends Number,T5 extends Number> |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
List<T3> y,
List<T4> yLow,
List<T5> yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
long[] y,
long[] yLow,
long[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
short[] y,
short[] yLow,
short[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T3 extends Number,T4 extends Number,T5 extends Number> |
errorBarXY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] xLow,
DBDateTime[] xHigh,
T3[] y,
T4[] yLow,
T5[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
double[] x,
double[] xLow,
double[] xHigh,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
double[] x,
double[] xLow,
double[] xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
double[] x,
double[] xLow,
double[] xHigh,
double[] y,
double[] yLow,
double[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
float[] x,
float[] xLow,
float[] xHigh,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
float[] x,
float[] xLow,
float[] xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
float[] x,
float[] xLow,
float[] xHigh,
float[] y,
float[] yLow,
float[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
int[] x,
int[] xLow,
int[] xHigh,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
int[] x,
int[] xLow,
int[] xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
int[] x,
int[] xLow,
int[] xHigh,
int[] y,
int[] yLow,
int[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarXY(Comparable seriesName,
List<T0> x,
List<T1> xLow,
List<T2> xHigh,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarXY(Comparable seriesName,
List<T0> x,
List<T1> xLow,
List<T2> xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers 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> |
errorBarXY(Comparable seriesName,
List<T0> x,
List<T1> xLow,
List<T2> xHigh,
List<T3> y,
List<T4> yLow,
List<T5> yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
long[] x,
long[] xLow,
long[] xHigh,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
long[] x,
long[] xLow,
long[] xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
long[] x,
long[] xLow,
long[] xHigh,
long[] y,
long[] yLow,
long[] yHigh)
Creates a error bar plot with whiskers 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 of the data 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 a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
short[] x,
short[] xLow,
short[] xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
XYErrorBarDataSeries |
errorBarXY(Comparable seriesName,
short[] x,
short[] xLow,
short[] xHigh,
short[] y,
short[] yLow,
short[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarXY(Comparable seriesName,
T0[] x,
T1[] xLow,
T2[] xHigh,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in both the x and y directions.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
errorBarXY(Comparable seriesName,
T0[] x,
T1[] xLow,
T2[] xHigh,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers 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> |
errorBarXY(Comparable seriesName,
T0[] x,
T1[] xLow,
T2[] xHigh,
T3[] y,
T4[] yLow,
T5[] yHigh)
Creates a error bar plot with whiskers 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 of the data 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 in
byColumns. |
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 in
byColumns. |
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
Date[] x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
Date[] x,
double[] y,
double[] yLow,
double[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
Date[] x,
float[] y,
float[] yLow,
float[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
Date[] x,
int[] y,
int[] yLow,
int[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarY(Comparable seriesName,
Date[] x,
List<T1> y,
List<T2> yLow,
List<T3> yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
Date[] x,
long[] y,
long[] yLow,
long[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
Date[] x,
short[] y,
short[] yLow,
short[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarY(Comparable seriesName,
Date[] x,
T1[] y,
T2[] yLow,
T3[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
DBDateTime[] x,
double[] y,
double[] yLow,
double[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
DBDateTime[] x,
float[] y,
float[] yLow,
float[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
DBDateTime[] x,
int[] y,
int[] yLow,
int[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarY(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
List<T2> yLow,
List<T3> yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
DBDateTime[] x,
long[] y,
long[] yLow,
long[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
DBDateTime[] x,
short[] y,
short[] yLow,
short[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarY(Comparable seriesName,
DBDateTime[] x,
T1[] y,
T2[] yLow,
T3[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
double[] x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
double[] x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
double[] x,
double[] y,
double[] yLow,
double[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
float[] x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
float[] x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
float[] x,
float[] y,
float[] yLow,
float[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
int[] x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
int[] x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
int[] x,
int[] y,
int[] yLow,
int[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T0 extends Number> |
errorBarY(Comparable seriesName,
List<T0> x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T0 extends Number> |
errorBarY(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarY(Comparable seriesName,
List<T0> x,
List<T1> y,
List<T2> yLow,
List<T3> yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
long[] x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
long[] x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
long[] x,
long[] y,
long[] yLow,
long[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
SelectableDataSet sds,
String x,
String y,
String yLow,
String yHigh)
Creates an XY plot of the data with error bars in both the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
short[] x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
short[] x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
short[] x,
short[] y,
short[] yLow,
short[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T0 extends Number> |
errorBarY(Comparable seriesName,
T0[] x,
Date[] y,
Date[] yLow,
Date[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T0 extends Number> |
errorBarY(Comparable seriesName,
T0[] x,
DBDateTime[] y,
DBDateTime[] yLow,
DBDateTime[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
<T0 extends Number,T1 extends Number,T2 extends Number,T3 extends Number> |
errorBarY(Comparable seriesName,
T0[] x,
T1[] y,
T2[] yLow,
T3[] yHigh)
Creates a error bar plot with whiskers in the y direction.
|
XYErrorBarDataSeries |
errorBarY(Comparable seriesName,
Table t,
String x,
String y,
String yLow,
String yHigh)
Creates an XY plot of the data 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 in
byColumns. |
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 in
byColumns. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
double[] x,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with range specified by
rangeMin and rangeMax. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
double[] x,
int nbins)
Creates a histogram with the specified
nbins bins. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
float[] x,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with range specified by
rangeMin and rangeMax. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
float[] x,
int nbins)
Creates a histogram with the specified
nbins bins. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
int[] x,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with range specified by
rangeMin and rangeMax. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
int[] x,
int nbins)
Creates a histogram with the specified
nbins bins. |
<T0 extends Number> |
histPlot(Comparable seriesName,
List<T0> x,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with range specified by
rangeMin and rangeMax. |
<T0 extends Number> |
histPlot(Comparable seriesName,
List<T0> x,
int nbins)
Creates a histogram with the specified
nbins bins. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
long[] x,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with range specified by
rangeMin and rangeMax. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
long[] x,
int nbins)
Creates a histogram with the specified
nbins bins. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
SelectableDataSet sds,
String columnName,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with continuous axes.
|
IntervalXYDataSeries |
histPlot(Comparable seriesName,
SelectableDataSet sds,
String columnName,
int nbins)
Creates a histogram with continuous axes.
|
IntervalXYDataSeries |
histPlot(Comparable seriesName,
short[] x,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with range specified by
rangeMin and rangeMax. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
short[] x,
int nbins)
Creates a histogram with the specified
nbins bins. |
<T0 extends Number> |
histPlot(Comparable seriesName,
T0[] x,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with range specified by
rangeMin and rangeMax. |
<T0 extends Number> |
histPlot(Comparable seriesName,
T0[] x,
int nbins)
Creates a histogram with the specified
nbins bins. |
IntervalXYDataSeries |
histPlot(Comparable seriesName,
Table counts)
Creates a histogram with continuous axes.
|
IntervalXYDataSeries |
histPlot(Comparable seriesName,
Table t,
String columnName,
double rangeMin,
double rangeMax,
int nbins)
Creates a histogram with continuous axes.
|
IntervalXYDataSeries |
histPlot(Comparable seriesName,
Table t,
String columnName,
int nbins)
Creates a histogram with continuous axes.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
Date[] time,
double[] open,
double[] high,
double[] low,
double[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
Date[] time,
float[] open,
float[] high,
float[] low,
float[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
Date[] time,
int[] open,
int[] high,
int[] low,
int[] close)
Creates an open-high-low-close chart.
|
<T1 extends Number,T2 extends Number,T3 extends Number,T4 extends Number> |
ohlcPlot(Comparable seriesName,
Date[] time,
List<T1> open,
List<T2> high,
List<T3> low,
List<T4> close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
Date[] time,
long[] open,
long[] high,
long[] low,
long[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
Date[] time,
short[] open,
short[] high,
short[] low,
short[] close)
Creates an open-high-low-close chart.
|
<T1 extends Number,T2 extends Number,T3 extends Number,T4 extends Number> |
ohlcPlot(Comparable seriesName,
Date[] time,
T1[] open,
T2[] high,
T3[] low,
T4[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
DBDateTime[] time,
double[] open,
double[] high,
double[] low,
double[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
DBDateTime[] time,
float[] open,
float[] high,
float[] low,
float[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
DBDateTime[] time,
int[] open,
int[] high,
int[] low,
int[] close)
Creates an open-high-low-close chart.
|
<T1 extends Number,T2 extends Number,T3 extends Number,T4 extends Number> |
ohlcPlot(Comparable seriesName,
DBDateTime[] time,
List<T1> open,
List<T2> high,
List<T3> low,
List<T4> close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
DBDateTime[] time,
long[] open,
long[] high,
long[] low,
long[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
DBDateTime[] time,
short[] open,
short[] high,
short[] low,
short[] close)
Creates an open-high-low-close chart.
|
<T1 extends Number,T2 extends Number,T3 extends Number,T4 extends Number> |
ohlcPlot(Comparable seriesName,
DBDateTime[] time,
T1[] open,
T2[] high,
T3[] low,
T4[] close)
Creates an open-high-low-close chart.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
IndexableNumericData time,
IndexableNumericData open,
IndexableNumericData high,
IndexableNumericData low,
IndexableNumericData close)
Creates an open-high-low-close plot of the data.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
SelectableDataSet sds,
String timeCol,
String openCol,
String highCol,
String lowCol,
String closeCol)
Creates an open-high-low-close plot of the data.
|
OHLCDataSeries |
ohlcPlot(Comparable seriesName,
Table t,
String timeCol,
String openCol,
String highCol,
String lowCol,
String closeCol)
Creates an open-high-low-close plot of the data.
|
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 in
byColumns. |
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 in
byColumns. |
<T1 extends Comparable> |
piePlot(Comparable seriesName,
IndexableData<T1> categories,
IndexableNumericData values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
List<T0> categories,
double[] values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
List<T0> categories,
float[] values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
List<T0> categories,
int[] values)
Creates a pie plot.
|
<T0 extends Comparable,T1 extends Number> |
piePlot(Comparable seriesName,
List<T0> categories,
List<T1> values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
List<T0> categories,
long[] values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
List<T0> categories,
short[] values)
Creates a pie plot.
|
<T0 extends Comparable,T1 extends Number> |
piePlot(Comparable seriesName,
List<T0> categories,
T1[] values)
Creates a pie plot.
|
CategoryDataSeries |
piePlot(Comparable seriesName,
SelectableDataSet sds,
String categories,
String values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
T0[] categories,
double[] values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
T0[] categories,
float[] values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
T0[] categories,
int[] values)
Creates a pie plot.
|
<T0 extends Comparable,T1 extends Number> |
piePlot(Comparable seriesName,
T0[] categories,
List<T1> values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
T0[] categories,
long[] values)
Creates a pie plot.
|
<T0 extends Comparable> |
piePlot(Comparable seriesName,
T0[] categories,
short[] values)
Creates a pie plot.
|
<T0 extends Comparable,T1 extends Number> |
piePlot(Comparable seriesName,
T0[] categories,
T1[] values)
Creates a pie plot.
|
CategoryDataSeries |
piePlot(Comparable seriesName,
Table t,
String categories,
String values)
Creates a pie plot.
|
<T extends Number> |
plot(Comparable seriesName,
groovy.lang.Closure<T> function)
Creates an XY plot of the function.
|
XYDataSeries |
plot(Comparable seriesName,
Date[] x,
Date[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
Date[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
Date[] x,
double[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
Date[] x,
float[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
Date[] x,
int[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
Date[] x,
List<T1> y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
Date[] x,
long[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
Date[] x,
short[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
Date[] x,
T1[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
DBDateTime[] x,
Date[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
DBDateTime[] x,
double[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
DBDateTime[] x,
float[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
DBDateTime[] x,
int[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
DBDateTime[] x,
List<T1> y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
DBDateTime[] x,
long[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
DBDateTime[] x,
short[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
DBDateTime[] x,
T1[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
double[] x,
Date[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
double[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
double[] x,
double[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
double[] x,
float[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
double[] x,
int[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
double[] x,
List<T1> y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
double[] x,
long[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
double[] x,
short[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
double[] x,
T1[] y)
Creates an XY plot of the data.
|
XYDataSeriesFunction |
plot(Comparable seriesName,
DoubleUnaryOperator function)
Creates an XY plot of the function.
|
XYDataSeries |
plot(Comparable seriesName,
float[] x,
Date[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
float[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
float[] x,
double[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
float[] x,
float[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
float[] x,
int[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
float[] x,
List<T1> y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
float[] x,
long[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
float[] x,
short[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
float[] x,
T1[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
IndexableNumericData x,
IndexableNumericData y,
boolean hasXTimeAxis,
boolean hasYTimeAxis)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
int[] x,
Date[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
int[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
int[] x,
double[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
int[] x,
float[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
int[] x,
int[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
int[] x,
List<T1> y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
int[] x,
long[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
int[] x,
short[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
int[] x,
T1[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
List<T0> x,
Date[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
List<T0> x,
DBDateTime[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
List<T0> x,
double[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
List<T0> x,
float[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
List<T0> x,
int[] y)
Creates an XY plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot(Comparable seriesName,
List<T0> x,
List<T1> y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
List<T0> x,
long[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
List<T0> x,
short[] y)
Creates an XY plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot(Comparable seriesName,
List<T0> x,
T1[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
long[] x,
Date[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
long[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
long[] x,
double[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
long[] x,
float[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
long[] x,
int[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
long[] x,
List<T1> y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
long[] x,
long[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
long[] x,
short[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
long[] x,
T1[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
SelectableDataSet sds,
String x,
String y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
short[] x,
Date[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
short[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
short[] x,
double[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
short[] x,
float[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
short[] x,
int[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
short[] x,
List<T1> y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
short[] x,
long[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
short[] x,
short[] y)
Creates an XY plot of the data.
|
<T1 extends Number> |
plot(Comparable seriesName,
short[] x,
T1[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
T0[] x,
Date[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
T0[] x,
DBDateTime[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
T0[] x,
double[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
T0[] x,
float[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
T0[] x,
int[] y)
Creates an XY plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot(Comparable seriesName,
T0[] x,
List<T1> y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
T0[] x,
long[] y)
Creates an XY plot of the data.
|
<T0 extends Number> |
plot(Comparable seriesName,
T0[] x,
short[] y)
Creates an XY plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot(Comparable seriesName,
T0[] x,
T1[] y)
Creates an XY plot of the data.
|
XYDataSeries |
plot(Comparable seriesName,
Table t,
String x,
String y)
Creates an XY plot of the data.
|
<T extends Number> |
plot3d(Comparable seriesName,
groovy.lang.Closure<T> function)
Creates an XYZ plot of the function.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
Date[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
DBDateTime[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
double[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
double[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeriesFunction |
plot3d(Comparable seriesName,
DoubleBinaryOperator function)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
float[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
float[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
int[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
int[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
List<T0> x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
long[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
long[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
SelectableDataSet sds,
String x,
String y,
String z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
short[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
short[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
Date[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
DBDateTime[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
double[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
float[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
int[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
List<T1> y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
long[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
short[] y,
T2[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
Date[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
DBDateTime[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
double[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
float[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
int[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
List<T2> z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
long[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
short[] z)
Creates an XYZ plot of the data.
|
<T0 extends Number,T1 extends Number,T2 extends Number> |
plot3d(Comparable seriesName,
T0[] x,
T1[] y,
T2[] z)
Creates an XYZ plot of the data.
|
XYZDataSeries |
plot3d(Comparable seriesName,
Table t,
String x,
String y,
String z)
Creates an XYZ plot of the data.
|
MultiSeries |
plot3dBy(Comparable seriesName,
Table t,
String x,
String y,
String z,
String... byColumns)
Creates an XYZ plot per distinct grouping value specified in
byColumns. |
MultiSeries |
plotBy(Comparable seriesName,
SelectableDataSet sds,
String x,
String y,
String... byColumns)
Creates an XY plot per distinct grouping value specified in
byColumns. |
MultiSeries |
plotBy(Comparable seriesName,
Table t,
String x,
String y,
String... byColumns)
Creates an XY plot per distinct grouping value specified in
byColumns. |
Axes |
plotStyle(PlotStyle style)
Sets the
PlotStyle of this Axes. |
Axes |
plotStyle(String style)
Sets the
PlotStyle of this Axes. |
Series |
series(Comparable name)
Gets a data series by name.
|
Series |
series(int id)
Gets a data series by id.
|
Axes |
twin()
Creates a new Axes instance which shares the same
Axis
objects as this Axes. |
Axes |
twin(int dim)
Creates a new Axes instance which shares the same
Axis
object at dimension dim as this Axes. |
Axes |
twin(String name)
Creates a new Axes instance which shares the same
Axis
objects as this Axes. |
Axes |
twin(String name,
int dim)
Creates a new Axes instance which shares the same
Axis
object at dimension dim 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. |
Axes |
twinZ()
Creates a new Axes instance which shares the same z-
Axis
as this Axes. |
Axes |
twinZ(String name)
Creates a new Axes instance which shares the same z-
Axis
as this Axes. |
Axis |
xAxis()
Gets the
Axis representing the x-axis |
Axes |
xBusinessTime()
|
Axes |
xBusinessTime(BusinessCalendar calendar)
|
Axes |
xColor(com.illumon.iris.gui.color.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 the
AxisFormat 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)
If
invert is true, 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 the
AxisTransform of the x-Axis to log base 10 |
Axes |
xMax(double max)
Sets the maximum of the x-
Axis |
Axes |
xMin(double min)
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 spacing between the x-
Axis major ticks. |
Axes |
xTicks(double[] tickLocations)
Sets the locations of the x-
Axis major 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 the
AxisTransform of the x-Axis |
Axis |
yAxis()
Gets the
Axis representing the y-axis |
Axes |
yBusinessTime()
|
Axes |
yBusinessTime(BusinessCalendar calendar)
|
Axes |
yColor(com.illumon.iris.gui.color.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 the
AxisFormat 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)
If
invert is true, 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 the
AxisTransform of the y-Axis to log base 10 |
Axes |
yMax(double max)
Sets the maximum of the y-
Axis |
Axes |
yMin(double min)
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 spacing between the y-
Axis major ticks. |
Axes |
yTicks(double[] tickLocations)
Sets the locations of the y-
Axis major 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 the
AxisTransform of the y-Axis |
Axis |
zAxis()
Gets the
Axis representing the z-axis |
Axes |
zBusinessTime()
|
Axes |
zBusinessTime(BusinessCalendar calendar)
|
Axes |
zColor(com.illumon.iris.gui.color.Paint color)
Sets the color of the z-
Axis |
Axes |
zColor(String color)
Sets the color of the z-
Axis |
Axes |
zFormat(AxisFormat format)
Sets the
AxisFormat of the z-Axis |
Axes |
zFormatPattern(String pattern)
Sets the format pattern of the z-
Axis |
Axes |
zInvert()
Inverts the z-
Axis so that larger values are closer to the origin. |
Axes |
zInvert(boolean invert)
If
invert is true, inverts the z-Axis so that larger values are closer to the origin. |
Axes |
zLabel(String label)
Sets the label of the z-
Axis |
Axes |
zLabelFont(Font font)
Sets the font for the z-
Axis label. |
Axes |
zLabelFont(String family,
String style,
int size)
Sets the font for the z-
Axis label. |
Axes |
zLog()
Sets the
AxisTransform of the z-Axis to log base 10 |
Axes |
zMax(double max)
Sets the maximum of the z-
Axis |
Axes |
zMin(double min)
Sets the minimum of the z-
Axis |
Axes |
zMinorTicks(int count)
Sets the number of minor ticks between consecutive major ticks
in the z-
Axis. |
Axes |
zMinorTicksVisible(boolean visible)
Sets whether the z-
Axis minor ticks are visible. |
Axes |
zRange(double min,
double max)
Sets the range of the z-
Axis |
Axes |
zTickLabelAngle(double angle)
Sets the angle the tick labels the z-
Axis are drawn at. |
Axes |
zTicks(double gapBetweenTicks)
Sets the spacing between the z-
Axis major ticks. |
Axes |
zTicks(double[] tickLocations)
Sets the locations of the z-
Axis major ticks. |
Axes |
zTicksFont(Font font)
Sets the font for the z-
Axis ticks. |
Axes |
zTicksFont(String family,
String style,
int size)
Sets the font for the z-
Axis ticks. |
Axes |
zTicksVisible(boolean visible)
Sets whether the z-
Axis ticks are visible. |
Axes |
zTransform(AxisTransform transform)
Sets the
AxisTransform of the z-Axis |
Axes axesRemoveSeries(String... names)
names from this Axes.names - series namesSeries series(int id)
id - series id.Series series(Comparable name)
name - series name.Axes plotStyle(PlotStyle style)
PlotStyle of this Axes.style - styleAxes plotStyle(String style)
PlotStyle of this Axes.style - styleAxes twin()
Axis
objects as this Axes.
The resultant Axes has the same range, ticks, etc. as this Axes
(as these are fields of the Axis) but may have,
for example, a different PlotStyle.
The axes name will be equal to the string representation of the axes id.
Axes twin(String name)
Axis
objects as this Axes.
The resultant Axes has the same range, ticks, etc. as this Axes
(as these are fields of the Axis) but may have,
for example, a different PlotStyle.name - Name for the axesAxes twin(int dim)
Axis
object at dimension dim as this Axes.
The x-axis is dimension 0, y-axis dimension 1, and the z-axis dimension 2.
The resultant Axes has the same range, ticks, etc. as this Axes
(as these are properties of the Axis) at this dimension,
but may have, for example, a different PlotStyle.
The axes name will be equal to the string representation of the axes id.
dim - Axis dimension to shareAxes twin(String name, int dim)
Axis
object at dimension dim as this Axes.
The x-axis is dimension 0, y-axis dimension 1, and the z-axis dimension 2.
The resultant Axes has the same range, ticks, etc. as this Axes
(as these are properties of the Axis) at this dimension,
but may have, for example, a different PlotStyle.
name - name for the axesdim - Axis dimension to shareAxes twinX()
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.
The axes name will be equal to the string representation of the axes id.
Axes twinX(String name)
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.
name - Name for the axesAxes twinY()
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.
The axes name will be equal to the string representation of the axes id.
Axes twinY(String name)
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.
name - Name for the axesAxes twinZ()
Axis
as this Axes.
The resultant Axes has the same z-axis range, ticks, etc. as this Axes
(as these are properties of the Axis)
but may have, for example, a different PlotStyle.
The axes name will be equal to the string representation of the axes id.
Axes twinZ(String name)
Axis
as this Axes.
The resultant Axes has the same z-axis range, ticks, etc. as this Axes
(as these are properties of the Axis)
but may have, for example, a different PlotStyle.
name - Name for the axesAxis axis(int dim)
Axis at dimension dim.
The x-axis is dimension 0, y-axis dimension 1, and the z-axis dimension 2.Axes xFormat(AxisFormat format)
AxisFormat of the x-Axisformat - formatAxes yFormat(AxisFormat format)
AxisFormat of the y-Axisformat - formatAxes zFormat(AxisFormat format)
AxisFormat of the z-Axisformat - formatAxes xFormatPattern(String pattern)
Axispattern - patternAxes yFormatPattern(String pattern)
Axispattern - patternAxes zFormatPattern(String pattern)
Axispattern - patternAxes xColor(com.illumon.iris.gui.color.Paint color)
Axiscolor - colorAxes xColor(String color)
Axiscolor - colorAxes yColor(com.illumon.iris.gui.color.Paint color)
Axiscolor - colorAxes yColor(String color)
Axiscolor - colorAxes zColor(com.illumon.iris.gui.color.Paint color)
Axiscolor - colorAxes zColor(String color)
Axiscolor - colorAxes xLabel(String label)
Axislabel - labelAxes yLabel(String label)
Axislabel - patternAxes zLabel(String label)
Axislabel - labelAxes xLabelFont(Font font)
Axis label.font - fontAxes yLabelFont(Font font)
Axis label.font - fontAxes zLabelFont(Font font)
Axis label.font - fontAxes xLabelFont(String family, String style, int size)
Axis label.family - font family; if null, set to Arialstyle - font style; if null, set to Font.FontStyle PLAINsize - the point size of the FontAxes yLabelFont(String family, String style, int size)
Axis label.family - font family; if null, set to Arialstyle - font style; if null, set to Font.FontStyle PLAINsize - the point size of the FontAxes zLabelFont(String family, String style, int size)
Axis label.family - font family; if null, set to Arialstyle - font style; if null, set to Font.FontStyle PLAINsize - the point size of the FontAxes xTicksFont(Font font)
Axis ticks.font - fontAxes yTicksFont(Font font)
Axis ticks.font - fontAxes zTicksFont(Font font)
Axis ticks.font - fontAxes xTicksFont(String family, String style, int size)
Axis ticks.family - font family; if null, set to Arialstyle - font style; if null, set to Font.FontStyle PLAINsize - the point size of the FontAxes yTicksFont(String family, String style, int size)
Axis ticks.family - font family; if null, set to Arialstyle - font style; if null, set to Font.FontStyle PLAINsize - the point size of the FontAxes zTicksFont(String family, String style, int size)
Axis ticks.family - font family; if null, set to Arialstyle - font style; if null, set to Font.FontStyle PLAINsize - the point size of the FontAxes xTransform(AxisTransform transform)
AxisTransform of the x-Axistransform - transformAxes yTransform(AxisTransform transform)
AxisTransform of the y-Axistransform - transformAxes zTransform(AxisTransform transform)
AxisTransform of the z-Axistransform - transformAxes xLog()
AxisTransform of the x-Axis to log base 10Axes yLog()
AxisTransform of the y-Axis to log base 10Axes zLog()
AxisTransform of the z-Axis to log base 10Axes xBusinessTime(BusinessCalendar calendar)
calendar - business calendar of the AxisTransformBusinessCalendarAxes yBusinessTime(BusinessCalendar calendar)
calendar - business calendar of the AxisTransformBusinessCalendarAxes zBusinessTime(BusinessCalendar calendar)
calendar - business calendar of the AxisTransformBusinessCalendarAxes xBusinessTime()
AxisTransform of the x-Axis
as a new AxisTransformBusinessCalendar.
The BusinessCalendar used is the configured default.Axes yBusinessTime()
AxisTransform of the y-Axis
as a new AxisTransformBusinessCalendar.
The BusinessCalendar used is the configured default.Axes zBusinessTime()
AxisTransform of the z-Axis
as a new AxisTransformBusinessCalendar.
The BusinessCalendar used is the configured default.Axes xInvert()
Axis so that larger values are closer to the origin.Axes xInvert(boolean invert)
invert is true, inverts the x-Axis so that larger values are closer to the origin.
If false, smaller values will be closer to the origin.invert - if true, larger values will be closer to the originAxes yInvert()
Axis so that larger values are closer to the origin.Axes yInvert(boolean invert)
invert is true, inverts the y-Axis so that larger values are closer to the origin.
If false, smaller values will be closer to the origin.invert - if true, larger values will be closer to the originAxes zInvert()
Axis so that larger values are closer to the origin.Axes zInvert(boolean invert)
invert is true, inverts the z-Axis so that larger values are closer to the origin.
If false, smaller values will be closer to the origin.invert - if true, larger values will be closer to the originAxes xRange(double min, double max)
Axismin - minimum of the rangemax - maximum of the rangeAxes yRange(double min, double max)
Axismin - minimum of the rangemax - maximum of the rangeAxes zRange(double min, double max)
Axismin - minimum of the rangemax - maximum of the rangeAxes xMin(double min)
Axismin - minimum of the x-rangeAxes yMin(double min)
Axismin - minimum of the y-rangeAxes zMin(double min)
Axismin - minimum of the z-rangeAxes xMax(double max)
Axismax - minimum of the x-rangeAxes yMax(double max)
Axismax - minimum of the y-rangeAxes zMax(double max)
Axismax - minimum of the z-rangeAxes xTicksVisible(boolean visible)
Axis ticks are visible.visible - whether the ticks are visibleAxes yTicksVisible(boolean visible)
Axis ticks are visible.visible - whether the ticks are visibleAxes zTicksVisible(boolean visible)
Axis ticks are visible.visible - whether the ticks are visibleAxes xTicks(double gapBetweenTicks)
Axis major ticks.gapBetweenTicks - spacing between major ticksAxes yTicks(double gapBetweenTicks)
Axis major ticks.gapBetweenTicks - spacing between major ticksAxes zTicks(double gapBetweenTicks)
Axis major ticks.gapBetweenTicks - spacing between major ticksAxes xTicks(double[] tickLocations)
Axis major ticks.tickLocations - locations of the major ticksAxes yTicks(double[] tickLocations)
Axis major ticks.tickLocations - locations of the major ticksAxes zTicks(double[] tickLocations)
Axis major ticks.tickLocations - locations of the major ticksAxes xMinorTicksVisible(boolean visible)
Axis minor ticks are visible.visible - whether the minor ticks are visibleAxes yMinorTicksVisible(boolean visible)
Axis minor ticks are visible.visible - whether the minor ticks are visibleAxes zMinorTicksVisible(boolean visible)
Axis minor ticks are visible.visible - whether the minor ticks are visibleAxes xMinorTicks(int count)
Axis.
These minor ticks are equally spaced.count - number of minor ticks between consecutive major ticks.Axes yMinorTicks(int count)
Axis.
These minor ticks are equally spaced.count - number of minor ticks between consecutive major ticks.Axes zMinorTicks(int count)
Axis.
These minor ticks are equally spaced.count - number of minor ticks between consecutive major ticks.Axes xTickLabelAngle(double angle)
Axis are drawn at.angle - angle in degreesAxes yTickLabelAngle(double angle)
Axis are drawn at.angle - angle in degreesAxes zTickLabelAngle(double angle)
Axis are drawn at.angle - angle in degreesXYErrorBarDataSeries errorBarXY(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
seriesName - name of the created datasett - tablex - column in t that holds the x-variable dataxLow - column in t that holds the low whisker value in the x directionxHigh - column in t that holds the high whisker value in the x directiony - column in t that holds the y-variable datayLow - column in t that holds the low whisker value in the y directionyHigh - column in t that holds the high whisker value in the y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
seriesName - name of the created datasetsds - selectable datasetx - column in sds that holds the x-variable dataxLow - column in sds that holds the low whisker value in the x directionxHigh - column in sds that holds the high whisker value in the x directiony - column in sds that holds the y-variable datayLow - column in sds that holds the low whisker value in the y directionyHigh - column in sds that holds the high whisker value in the y directionMultiSeries errorBarXYBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
byColumns.seriesName - name of the created datasett - tablex - column in t that holds the x-variable dataxLow - column in t that holds the low whisker value in the x directionxHigh - column in t that holds the high whisker value in the x directiony - column in t that holds the y-variable datayLow - column in t that holds the low whisker value in the y directionyHigh - column in t that holds the high whisker value in the y directionbyColumns - column(s) in t that holds the grouping dataMultiSeries errorBarXYBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
byColumns.seriesName - name of the created datasetsds - selectable datasetx - column in sds that holds the x-variable dataxLow - column in sds that holds the low whisker value in the x directionxHigh - column in sds that holds the high whisker value in the x directiony - column in sds that holds the y-variable datayLow - column in sds that holds the low whisker value in the y directionyHigh - column in sds that holds the high whisker value in the y directionbyColumns - column(s) in sds that holds the grouping dataXYErrorBarDataSeries errorBarX(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y)
seriesName - name of the created datasett - tablex - column in t that holds the x-variable dataxLow - column in t that holds the low whisker value in the x directionxHigh - column in t that holds the high whisker value in the x directiony - column in t that holds the y-variable dataXYErrorBarDataSeries errorBarX(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y)
seriesName - name of the created datasetsds - selectable datasetx - column in sds that holds the x-variable dataxLow - column in sds that holds the low whisker value in the x directionxHigh - column in sds that holds the high whisker value in the x directiony - column in sds that holds the y-variable dataMultiSeries errorBarXBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String... byColumns)
byColumns.seriesName - name of the created datasett - tablex - column in t that holds the x-variable dataxLow - column in t that holds the low whisker value in the x directionxHigh - column in t that holds the high whisker value in the x directiony - column in t that holds the y-variable databyColumns - column(s) in t that holds the grouping dataMultiSeries errorBarXBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String... byColumns)
byColumns.seriesName - name of the created datasetsds - selectable datasetx - column in sds that holds the x-variable dataxLow - column in sds that holds the low whisker value in the x directionxHigh - column in sds that holds the high whisker value in the x directiony - column in sds that holds the y-variable databyColumns - column(s) in sds that holds the grouping dataXYErrorBarDataSeries errorBarY(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh)
seriesName - name of the created datasett - tablex - column in t that holds the x-variable datay - column in t that holds the y-variable datayLow - column in t that holds the low whisker value in the y directionyHigh - column in t that holds the high whisker value in the y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh)
seriesName - name of the created datasetsds - selectable datasetx - column in sds that holds the x-variable datay - column in sds that holds the y-variable datayLow - column in sds that holds the low whisker value in the y directionyHigh - column in sds that holds the high whisker value in the y directionMultiSeries errorBarYBy(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh, String... byColumns)
byColumns.seriesName - name of the created datasett - tablex - column in t that holds the x-variable datay - column in t that holds the y-variable datayLow - column in t that holds the low whisker value in the y directionyHigh - column in t that holds the high whisker value in the y directionbyColumns - column(s) in t that holds the grouping dataMultiSeries errorBarYBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh, String... byColumns)
byColumns.seriesName - name of the created datasetsds - selectable datasetx - column in sds that holds the x-variable datay - column in sds that holds the y-variable datayLow - column in sds that holds the low whisker value in the y directionyHigh - column in sds that holds the high whisker value in the y directionbyColumns - column(s) in sds that holds the grouping dataCategoryDataSeries catErrorBar(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh)
seriesName - name of the created datasett - tablecategories - column in t that holds the discrete datavalues - column in t that holds the numeric datayLow - column in t that holds the low whisker value in the y directionyHigh - column in t that holds the high whisker value in the y directionCategoryDataSeries catErrorBar(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh)
seriesName - name of the created datasetsds - selectable datasetcategories - column in sds that holds the discrete datavalues - column in sds that holds the numeric datayLow - column in sds that holds the low whisker value in the y directionyHigh - column in sds that holds the high whisker value in the y directionMultiSeries catErrorBarBy(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh, String... byColumns)
byColumns.seriesName - name of the created datasett - tablecategories - column in t that holds the discrete datavalues - column in t that holds the numeric datayLow - column in t that holds the low whisker value in the y directionyHigh - column in t that holds the high whisker value in the y directionbyColumns - column(s) in t that holds the grouping dataMultiSeries catErrorBarBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh, String... byColumns)
byColumns.seriesName - name of the created datasetsds - selectable datasetcategories - column in sds that holds the discrete datavalues - column in sds that holds the numeric datayLow - column in sds that holds the low whisker value in the y directionyHigh - column in sds that holds the high whisker value in the y directionbyColumns - column(s) in sds that holds the grouping dataXYDataSeriesFunction plot(Comparable seriesName, DoubleUnaryOperator function)
seriesName - name of the created datasetfunction - function<T extends Number> XYDataSeriesFunction plot(Comparable seriesName, groovy.lang.Closure<T> function)
T - function input typeseriesName - name of the created datasetfunction - functionXYDataSeries plot(Comparable seriesName, IndexableNumericData x, IndexableNumericData y, boolean hasXTimeAxis, boolean hasYTimeAxis)
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 dataXYDataSeries plot(Comparable seriesName, Table t, String x, String y)
seriesName - name of the created datasett - tablex - column in t that holds the x-variable datay - column in t that holds the y-variable dataXYDataSeries plot(Comparable seriesName, SelectableDataSet sds, String x, String y)
seriesName - name of the created datasetsds - selectable data setx - column in sds that holds the x-variable datay - column in sds that holds the y-variable dataMultiSeries plotBy(Comparable seriesName, Table t, String x, String y, String... byColumns)
byColumns.seriesName - name of the created datasett - tablex - column in t that holds the x-variable datay - column in t that holds the y-variable databyColumns - column(s) in t that holds the grouping dataMultiSeries plotBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String... byColumns)
byColumns.
Supports filtering e.g. with a OneClick.seriesName - name of the created datasetsds - selectable data setx - column in sds that holds the x-variable datay - column in sds that holds the y-variable databyColumns - column(s) in t that holds the grouping dataOHLCDataSeries ohlcPlot(Comparable seriesName, IndexableNumericData time, IndexableNumericData open, IndexableNumericData high, IndexableNumericData low, IndexableNumericData close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol)
seriesName - name of the created datasett - tabletimeCol - column in t that holds the time dataopenCol - column in t that holds the open datahighCol - column in t that holds the high datalowCol - column in t that holds the low datacloseCol - column in t that holds the close dataOHLCDataSeries ohlcPlot(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol)
seriesName - name of the created datasetsds - selectable data settimeCol - column in sds that holds the time dataopenCol - column in sds that holds the open datahighCol - column in sds that holds the high datalowCol - column in sds that holds the low datacloseCol - column in sds that holds the close dataMultiSeries ohlcPlotBy(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)
byColumns.seriesName - name of the created datasett - tabletimeCol - column in t that holds the time dataopenCol - column in t that holds the open datahighCol - column in t that holds the high datalowCol - column in t that holds the low datacloseCol - column in t that holds the close databyColumns - column(s) in t that holds the grouping dataMultiSeries ohlcPlotBy(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)
byColumns.
Supports filtering e.g. with a OneClick.seriesName - name of the created datasetsds - selectable data settimeCol - column in sds that holds the time dataopenCol - column in sds that holds the open datahighCol - column in sds that holds the high datalowCol - column in sds that holds the low datacloseCol - column in sds that holds the close databyColumns - column(s) in sds that holds the grouping dataIntervalXYDataSeries histPlot(Comparable seriesName, Table counts)
seriesName - name of the created datasetcounts - tableIllegalArgumentException - counts must contain columns "BinMin", "BinMid", "BinMax", "Count"IntervalXYDataSeries histPlot(Comparable seriesName, Table t, String columnName, int nbins)
nbins.seriesName - name of the created datasett - tablecolumnName - column in tnbins - number of bins in the resulting histogramIllegalArgumentException - columnName must be a numeric column in tIntervalXYDataSeries histPlot(Comparable seriesName, Table t, String columnName, double rangeMin, double rangeMax, int nbins)
nbins.
The range is set with rangeMin and rangeMax. The nbins are spread out equally in this range.seriesName - name of the created datasett - tablecolumnName - column in trangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of bins in the resulting histogramIllegalArgumentException - columnName must be a numeric column in tIntervalXYDataSeries histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, int nbins)
nbins.
Supports filtering e.g. by OneClickseriesName - name of the created datasetsds - selectable data setcolumnName - column in sdsnbins - number of bins in the resulting histogramIllegalArgumentException - columnName must be a numeric column in sdsIntervalXYDataSeries histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, double rangeMin, double rangeMax, int nbins)
nbins.
The range is set with rangeMin and rangeMax. The nbins are spread out equally in this range.seriesName - name of the created datasetsds - selectable data setcolumnName - column in sdsrangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of bins in the resulting histogramIllegalArgumentException - columnName must be a numeric column in sdsCategoryDataSeries catHistPlot(Comparable seriesName, Table t, String columnName)
columnName column of t.seriesName - name of the created datasett - tablecolumnName - column in tCategoryDataSeries catHistPlot(Comparable seriesName, SelectableDataSet sds, String columnName)
columnName column of sds.
Supports filtering e.g. with a OneClickseriesName - name of the created datasetsds - selectable data setcolumnName - column in sds<T extends Comparable> CategoryDataSeries catHistPlot(Comparable seriesName, T[] x)
x.T - data type of the categorical dataseriesName - name of the created datasetx - dataCategoryDataSeries catHistPlot(Comparable seriesName, int[] x)
x.seriesName - name of the created datasetx - dataCategoryDataSeries catHistPlot(Comparable seriesName, long[] x)
x.seriesName - name of the created datasetx - dataCategoryDataSeries catHistPlot(Comparable seriesName, float[] x)
x.seriesName - name of the created datasetx - dataCategoryDataSeries catHistPlot(Comparable seriesName, double[] x)
x.seriesName - name of the created datasetx - data<T extends Comparable> CategoryDataSeries catHistPlot(Comparable seriesName, List<T> x)
x.T - data type of the categorical dataseriesName - name of the created datasetx - data<T1 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)
T1 - data type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric dataCategoryDataSeries catPlot(Comparable seriesName, Table t, String categories, String values)
seriesName - name of the created datasett - tablecategories - column in t holding discrete datavalues - column in t holding numeric dataCategoryDataSeries catPlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)
seriesName - name of the created datasetsds - selectable data setcategories - column in sds holding discrete datavalues - column in sds holding numeric dataMultiSeries catPlotBy(Comparable seriesName, Table t, String categories, String values, String... byColumns)
byColumns.seriesName - name of the created datasett - tablecategories - column in t holding discrete datavalues - column in t holding numeric databyColumns - column(s) in t that holds the grouping dataMultiSeries catPlotBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String... byColumns)
byColumns.
Supports filtering e.g. with a OneClickseriesName - name of the created datasetsds - selectable data setcategories - column in sds holding discrete datavalues - column in sds holding numeric databyColumns - column(s) in sds that holds the grouping data<T1 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)
T1 - data type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data valuesCategoryDataSeries piePlot(Comparable seriesName, Table t, String categories, String values)
seriesName - name of the created datasett - tablecategories - column in t with categorical datavalues - column in t with numerical dataCategoryDataSeries piePlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)
seriesName - name of the created datasetsds - selectable data setcategories - column in sds with categorical datavalues - column in sds with numerical dataXYZDataSeriesFunction plot3d(Comparable seriesName, DoubleBinaryOperator function)
seriesName - name of the created datasetfunction - Binary function<T extends Number> XYZDataSeriesFunction plot3d(Comparable seriesName, groovy.lang.Closure<T> function)
T - function input typeseriesName - name of the created datasetfunction - Binary functionXYZDataSeries plot3d(Comparable seriesName, Table t, String x, String y, String z)
seriesName - name of the created datasett - tablex - column in t that holds the x-variable datay - column in t that holds the y-variable dataz - column in t that holds the z-variable dataXYZDataSeries plot3d(Comparable seriesName, SelectableDataSet sds, String x, String y, String z)
seriesName - name of the created datasetsds - selectable data setx - column in sds that holds the x-variable datay - column in sds that holds the y-variable dataz - column in t that holds the z-variable dataMultiSeries plot3dBy(Comparable seriesName, Table t, String x, String y, String z, String... byColumns)
byColumns.seriesName - name of the created datasett - tablex - column in t that holds the x-variable datay - column in t that holds the y-variable dataz - column in t that holds the z-variable databyColumns - column(s) in t that holds the grouping dataCategoryDataSeries3D catPlot3d(Comparable seriesName, Table t, String xCategoriesColumn, String zCategoriesColumn, String valuesColumn)
seriesName - name of the created datasett - tablexCategoriesColumn - column in t holding xCategoriesColumn datazCategoriesColumn - column in t holding zCategoriesColumn datavaluesColumn - column in t holding numeric dataCategoryDataSeries3D catPlot3d(Comparable seriesName, SelectableDataSet sds, String xCategoriesColumn, String zCategoriesColumn, String valuesColumn)
seriesName - name of the created datasetsds - selectable data setxCategoriesColumn - column in t holding category1 datazCategoriesColumn - column in t holding category2 datavaluesColumn - column in sds holding numeric dataMultiSeries catPlot3dBy(Comparable seriesName, Table t, String xCategoriesColumn, String zCategoriesColumn, String valuesColumn, String... byColumns)
byColumns.seriesName - name of the created datasett - tablexCategoriesColumn - column in t holding discrete datazCategoriesColumn - column in t holding discrete datavaluesColumn - column in t holding numeric databyColumns - column(s) in t that holds the grouping dataXYDataSeries plot(Comparable seriesName, Date[] x, Date[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, Date[] x, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, Date[] x, short[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, Date[] x, int[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, Date[] x, long[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, Date[] x, float[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, Date[] x, double[] y)
seriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, Date[] x, T1[] y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, Date[] x, List<T1> y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, DBDateTime[] x, Date[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, DBDateTime[] x, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, DBDateTime[] x, short[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, DBDateTime[] x, int[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, DBDateTime[] x, long[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, DBDateTime[] x, float[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, DBDateTime[] x, double[] y)
seriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, DBDateTime[] x, T1[] y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, DBDateTime[] x, List<T1> y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, short[] x, Date[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, short[] x, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, short[] x, short[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, short[] x, int[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, short[] x, long[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, short[] x, float[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, short[] x, double[] y)
seriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, short[] x, T1[] y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, short[] x, List<T1> y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, int[] x, Date[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, int[] x, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, int[] x, short[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, int[] x, int[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, int[] x, long[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, int[] x, float[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, int[] x, double[] y)
seriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, int[] x, T1[] y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, int[] x, List<T1> y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, long[] x, Date[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, long[] x, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, long[] x, short[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, long[] x, int[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, long[] x, long[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, long[] x, float[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, long[] x, double[] y)
seriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, long[] x, T1[] y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, long[] x, List<T1> y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, float[] x, Date[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, float[] x, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, float[] x, short[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, float[] x, int[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, float[] x, long[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, float[] x, float[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, float[] x, double[] y)
seriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, float[] x, T1[] y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, float[] x, List<T1> y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, double[] x, Date[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, double[] x, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, double[] x, short[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, double[] x, int[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, double[] x, long[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, double[] x, float[] y)
seriesName - name of the created datasetx - x-valuesy - y-valuesXYDataSeries plot(Comparable seriesName, double[] x, double[] y)
seriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, double[] x, T1[] y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T1 extends Number> XYDataSeries plot(Comparable seriesName, double[] x, List<T1> y)
T1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, Date[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, DBDateTime[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, short[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, int[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, long[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, float[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, double[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number,T1 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, T1[] y)
T0 - data typeT1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number,T1 extends Number> XYDataSeries plot(Comparable seriesName, T0[] x, List<T1> y)
T0 - data typeT1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, Date[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, DBDateTime[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, short[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, int[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, long[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, float[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, double[] y)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number,T1 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, T1[] y)
T0 - data typeT1 - data typeseriesName - name of the created datasetx - x-valuesy - y-values<T0 extends Number,T1 extends Number> XYDataSeries plot(Comparable seriesName, List<T0> x, List<T1> y)
T0 - data typeT1 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesOHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, short[] open, short[] high, short[] low, short[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, short[] open, short[] high, short[] low, short[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, int[] open, int[] high, int[] low, int[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, int[] open, int[] high, int[] low, int[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, long[] open, long[] high, long[] low, long[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, long[] open, long[] high, long[] low, long[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, float[] open, float[] high, float[] low, float[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, float[] open, float[] high, float[] low, float[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, Date[] time, double[] open, double[] high, double[] low, double[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataOHLCDataSeries ohlcPlot(Comparable seriesName, DBDateTime[] time, double[] open, double[] high, double[] low, double[] close)
seriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close data<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)
T1 - open data typeT2 - high data typeT3 - low data typeT4 - close data typeseriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close data<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)
T1 - open data typeT2 - high data typeT3 - low data typeT4 - close data typeseriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close data<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)
T1 - open data typeT2 - high data typeT3 - low data typeT4 - close data typeseriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close data<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)
T1 - open data typeT2 - high data typeT3 - low data typeT4 - close data typeseriesName - name of the created datasettime - time dataopen - open datahigh - high datalow - low dataclose - close dataIntervalXYDataSeries histPlot(Comparable seriesName, short[] x, int nbins)
nbins bins.seriesName - name of the created datasetx - datanbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, int[] x, int nbins)
nbins bins.seriesName - name of the created datasetx - datanbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, long[] x, int nbins)
nbins bins.seriesName - name of the created datasetx - datanbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, float[] x, int nbins)
nbins bins.seriesName - name of the created datasetx - datanbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, double[] x, int nbins)
nbins bins.seriesName - name of the created datasetx - datanbins - number of bins<T0 extends Number> IntervalXYDataSeries histPlot(Comparable seriesName, T0[] x, int nbins)
nbins bins.T0 - data typeseriesName - name of the created datasetx - datanbins - number of bins<T0 extends Number> IntervalXYDataSeries histPlot(Comparable seriesName, List<T0> x, int nbins)
nbins bins.T0 - data typeseriesName - name of the created datasetx - datanbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, short[] x, double rangeMin, double rangeMax, int nbins)
rangeMin and rangeMax.
The number of bins is specified by nbins.
The bins are spaced evenly between the range.seriesName - name of the created datasetx - datarangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, int[] x, double rangeMin, double rangeMax, int nbins)
rangeMin and rangeMax.
The number of bins is specified by nbins.
The bins are spaced evenly between the range.seriesName - name of the created datasetx - datarangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, long[] x, double rangeMin, double rangeMax, int nbins)
rangeMin and rangeMax.
The number of bins is specified by nbins.
The bins are spaced evenly between the range.seriesName - name of the created datasetx - datarangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, float[] x, double rangeMin, double rangeMax, int nbins)
rangeMin and rangeMax.
The number of bins is specified by nbins.
The bins are spaced evenly between the range.seriesName - name of the created datasetx - datarangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of binsIntervalXYDataSeries histPlot(Comparable seriesName, double[] x, double rangeMin, double rangeMax, int nbins)
rangeMin and rangeMax.
The number of bins is specified by nbins.
The bins are spaced evenly between the range.seriesName - name of the created datasetx - datarangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of bins<T0 extends Number> IntervalXYDataSeries histPlot(Comparable seriesName, T0[] x, double rangeMin, double rangeMax, int nbins)
rangeMin and rangeMax.
The number of bins is specified by nbins.
The bins are spaced evenly between the range.T0 - data typeseriesName - name of the created datasetx - datarangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of bins<T0 extends Number> IntervalXYDataSeries histPlot(Comparable seriesName, List<T0> x, double rangeMin, double rangeMax, int nbins)
rangeMin and rangeMax.
The number of bins is specified by nbins.
The bins are spaced evenly between the range.T0 - data typeseriesName - name of the created datasetx - datarangeMin - minimum of the rangerangeMax - maximum of the rangenbins - number of binsXYErrorBarDataSeries errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y, short[] yLow, short[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y, int[] yLow, int[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y, long[] yLow, long[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y, float[] yLow, float[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y, double[] yLow, double[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - data typeT1 - data typeT2 - data typeT3 - data typeT4 - data typeT5 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - data typeT1 - data typeT2 - data typeT3 - data typeT4 - data typeT5 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y, short[] yLow, short[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y, int[] yLow, int[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y, long[] yLow, long[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y, float[] yLow, float[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y, double[] yLow, double[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T3 - data typeT4 - data typeT5 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T3 - data typeT4 - data typeT5 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y, short[] yLow, short[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y, int[] yLow, int[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y, long[] yLow, long[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y, float[] yLow, float[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y, double[] yLow, double[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T3 - data typeT4 - data typeT5 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T3 - data typeT4 - data typeT5 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T0 extends Number,T1 extends Number,T2 extends Number,T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y)
T0 - data typeT1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<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)
T0 - data typeT1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y)
T3 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T0 extends Number,T1 extends Number,T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y)
T3 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T0 extends Number,T1 extends Number,T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y)
seriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y)
T3 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T0 extends Number,T1 extends Number,T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T3 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y)
T3 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-values<T0 extends Number,T1 extends Number,T2 extends Number> XYErrorBarDataSeries errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y)
T0 - data typeT1 - data typeT2 - data typeseriesName - name of the created datasetx - x-valuesxLow - low whisker value in x directionxHigh - high whisker value in x directiony - y-valuesXYErrorBarDataSeries errorBarY(Comparable seriesName, short[] x, short[] y, short[] yLow, short[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, int[] x, int[] y, int[] yLow, int[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, long[] x, long[] y, long[] yLow, long[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, float[] x, float[] y, float[] yLow, float[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, double[] x, double[] y, double[] yLow, double[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Number,T1 extends Number,T2 extends Number,T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, T0[] x, T1[] y, T2[] yLow, T3[] yHigh)
T0 - data typeT1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - data typeT1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, short[] y, short[] yLow, short[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, short[] x, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, int[] y, int[] yLow, int[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, int[] x, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, long[] y, long[] yLow, long[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, long[] x, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, float[] y, float[] yLow, float[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, float[] x, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, double[] y, double[] yLow, double[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, double[] x, Date[] y, Date[] yLow, Date[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T1 extends Number,T2 extends Number,T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, T1[] y, T2[] yLow, T3[] yHigh)
T1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, T0[] x, Date[] y, Date[] yLow, Date[] yHigh)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T1 extends Number,T2 extends Number,T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, Date[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
T1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, List<T0> x, Date[] y, Date[] yLow, Date[] yHigh)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, short[] y, short[] yLow, short[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, short[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, int[] y, int[] yLow, int[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, int[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, long[] y, long[] yLow, long[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, long[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, float[] y, float[] yLow, float[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, float[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, double[] y, double[] yLow, double[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y directionXYErrorBarDataSeries errorBarY(Comparable seriesName, double[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
seriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T1 extends Number,T2 extends Number,T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, T1[] y, T2[] yLow, T3[] yHigh)
T1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, T0[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T1 extends Number,T2 extends Number,T3 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, DBDateTime[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
T1 - data typeT2 - data typeT3 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Number> XYErrorBarDataSeries errorBarY(Comparable seriesName, List<T0> x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
T0 - data typeseriesName - name of the created datasetx - x-valuesy - y-valuesyLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, short[] values, short[] yLow, short[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, int[] values, int[] yLow, int[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, long[] values, long[] yLow, long[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, float[] values, float[] yLow, float[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, double[] values, double[] yLow, double[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable,T1 extends Number,T2 extends Number,T3 extends Number> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, T1[] values, T2[] yLow, T3[] yHigh)
T0 - type of the categorical dataT1 - type of the numeric dataT2 - type of the numeric dataT3 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - type of the categorical dataT1 - type of the numeric dataT2 - type of the numeric dataT3 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, short[] values, short[] yLow, short[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, int[] values, int[] yLow, int[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, long[] values, long[] yLow, long[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, float[] values, float[] yLow, float[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, List<T0> categories, double[] values, double[] yLow, double[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - type of the categorical dataT1 - type of the numeric dataT2 - type of the numeric dataT3 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<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)
T0 - type of the categorical dataT1 - type of the numeric dataT2 - type of the numeric dataT3 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, Date[] values, Date[] yLow, Date[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catErrorBar(Comparable seriesName, T0[] categories, DBDateTime[] values, DBDateTime[] yLow, DBDateTime[] yHigh)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric datayLow - low whisker value in y directionyHigh - high whisker value in y direction<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, Date[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, DBDateTime[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, short[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, int[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, long[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, float[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, double[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable,T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, T1[] values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable,T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, T0[] categories, List<T1> values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, Date[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, DBDateTime[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, short[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, int[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, long[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, float[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, double[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable,T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, T1[] values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable,T1 extends Number> CategoryDataSeries catPlot(Comparable seriesName, List<T0> categories, List<T1> values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - discrete datavalues - numeric data<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, short[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, int[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, long[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, float[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, double[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable,T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, T1[] values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable,T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, T0[] categories, List<T1> values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, short[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, int[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, long[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, float[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, double[] values)
T0 - type of the categorical dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable,T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, T1[] values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - categoriesvalues - data values<T0 extends Comparable,T1 extends Number> CategoryDataSeries piePlot(Comparable seriesName, List<T0> categories, List<T1> values)
T0 - type of the categorical dataT1 - type of the numeric dataseriesName - name of the created datasetcategories - categoriesvalues - data valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, Date[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, DBDateTime[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, short[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, int[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, long[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, float[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, double[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, T1[] y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, Date[] x, List<T1> y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, Date[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, short[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, int[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, long[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, float[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, double[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, T1[] y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, DBDateTime[] x, List<T1> y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, Date[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, DBDateTime[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, short[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, int[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, long[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, float[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, double[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, T1[] y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, short[] x, List<T1> y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, Date[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, DBDateTime[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, short[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, int[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, long[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, float[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, double[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, T1[] y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, int[] x, List<T1> y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, Date[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, DBDateTime[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, short[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, int[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, long[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, float[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, double[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, T1[] y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, long[] x, List<T1> y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, Date[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, DBDateTime[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, short[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, int[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, long[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, float[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, double[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, T1[] y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, float[] x, List<T1> y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, Date[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, DBDateTime[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, short[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, int[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, long[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, float[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, Date[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, DBDateTime[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, short[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, int[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, long[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, float[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-valuesXYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, double[] z)
seriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, T2[] z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, double[] y, List<T2> z)
T2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, T1[] y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, Date[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, DBDateTime[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, short[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, int[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, long[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, float[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, double[] z)
T1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, T2[] z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, double[] x, List<T1> y, List<T2> z)
T1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, Date[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, DBDateTime[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, short[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, int[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, long[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, float[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, double[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, Date[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, DBDateTime[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, short[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, int[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, long[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, float[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, double[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, T2[] z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, T1[] y, List<T2> z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, Date[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, DBDateTime[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, short[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, int[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, long[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, float[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, double[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, T2[] z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, T0[] x, List<T1> y, List<T2> z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, Date[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, DBDateTime[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, short[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, int[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, long[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, float[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, Date[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, DBDateTime[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, short[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, int[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, long[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, float[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, double[] z)
T0 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, T2[] z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, double[] y, List<T2> z)
T0 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, Date[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, DBDateTime[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, short[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, int[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, long[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, float[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, double[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, T2[] z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, T1[] y, List<T2> z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, Date[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, DBDateTime[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, short[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, int[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, long[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, float[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, double[] z)
T0 - number data typeT1 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, T2[] z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Number,T1 extends Number,T2 extends Number> XYZDataSeries plot3d(Comparable seriesName, List<T0> x, List<T1> y, List<T2> z)
T0 - number data typeT1 - number data typeT2 - number data typeseriesName - name of the created datasetx - x-valuesy - y-valuesz - z-values<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, Date[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, DBDateTime[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, short[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, int[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, long[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, float[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, double[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, T2[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, T1[] zCategories, List<T2> values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, Date[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, DBDateTime[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, short[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, int[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, long[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, float[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, double[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, T2[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, T0[] xCategories, List<T1> zCategories, List<T2> values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, Date[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, DBDateTime[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, short[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, int[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, long[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, float[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, double[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, T2[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, T1[] zCategories, List<T2> values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, Date[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, DBDateTime[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, short[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, int[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, long[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, float[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, double[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, T2[] values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data<T0 extends Comparable,T1 extends Comparable,T2 extends Number> CategoryDataSeries3D catPlot3d(Comparable seriesName, List<T0> xCategories, List<T1> zCategories, List<T2> values)
T0 - type of the xCategories dataT1 - type of the zCategories dataT2 - type of the numeric dataseriesName - name of the created datasetxCategories - set of discrete categories on x-axiszCategories - set of discrete categories on z-axisvalues - numeric data