Package com.illumon.iris.db.plot
Class FigureImpl
java.lang.Object
com.illumon.iris.db.plot.FigureImpl
- All Implemented Interfaces:
Axes
,Axis
,BaseFigure
,Chart
,CategoryDataSeries
,CategoryErrorBarDataSeries
,DataSeries
,IntervalXYDataSeries
,MultiSeries
,OHLCDataSeries
,XYDataSeries
,XYDataSeriesFunction
,XYErrorBarDataSeries
,Figure
,Series
,Serializable
- Direct Known Subclasses:
FigureWidget
,ScatterPlotMatrix
public class FigureImpl extends Object implements Figure
An interface for constructing plots. A Figure is immutable, and all function calls return a new immutable Figure instance.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description FigureImpl(FigureImpl figure)
-
Method Summary
Modifier and Type Method Description FigureImpl
axes(int id)
Gets an axes.FigureImpl
axes(String name)
Gets an axes.FigureImpl
axesRemoveSeries(String... names)
Removes the series with the specifiednames
from this Axes.FigureImpl
axis(int dim)
Gets theAxis
at dimensiondim
.FigureImpl
axisColor(Paint color)
Sets the color for this Axis line and tick marks.FigureImpl
axisColor(String color)
Sets the color for this Axis line and tick marks.FigureImpl
axisFormat(AxisFormat format)
Sets theAxisFormat
for this Axis.FigureImpl
axisFormatPattern(String pattern)
Sets the format pattern for this Axis's labels.FigureImpl
axisLabel(String label)
Sets the label for this Axis.FigureImpl
axisLabelFont(Font font)
Sets the font for this Axis's label.FigureImpl
axisLabelFont(String family, String style, int size)
Sets the font for this Axis's label.FigureImpl
businessTime()
Sets this Axis'sAxisTransform
as anAxisTransformBusinessCalendar
.FigureImpl
businessTime(SelectableDataSet sds, String valueColumn)
Sets this Axis'sAxisTransform
as anAxisTransformBusinessCalendar
.FigureImpl
businessTime(BusinessCalendar calendar)
Sets this Axis'sAxisTransform
as anAxisTransformBusinessCalendar
.FigureImpl
catErrorBar(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh)
Creates a category error bar plot with whiskers in the y direction.FigureImpl
catErrorBar(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(Comparable seriesName, List<T0> categories, List<T1> values, List<T2> yLow, List<T3> yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplcatErrorBar(Comparable seriesName, List<T0> categories, T1[] values, T2[] yLow, T3[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(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>
FigureImplcatErrorBar(Comparable seriesName, T0[] categories, Date[] values, Date[] yLow, Date[] yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplcatErrorBar(Comparable seriesName, T0[] categories, List<T1> values, List<T2> yLow, List<T3> yHigh)
Creates a category error bar plot with whiskers in the y direction.<T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplcatErrorBar(Comparable seriesName, T0[] categories, T1[] values, T2[] yLow, T3[] yHigh)
Creates a category error bar plot with whiskers in the y direction.FigureImpl
catErrorBarBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh, String... byColumns)
Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.FigureImpl
catErrorBarBy(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh, String... byColumns)
Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.FigureImpl
catHistPlot(Comparable seriesName, double[] x)
Creates a histogram with discrete axis.FigureImpl
catHistPlot(Comparable seriesName, float[] x)
Creates a histogram with discrete axis.FigureImpl
catHistPlot(Comparable seriesName, int[] x)
Creates a histogram with discrete axis.FigureImpl
catHistPlot(Comparable seriesName, long[] x)
Creates a histogram with discrete axis.FigureImpl
catHistPlot(Comparable seriesName, SelectableDataSet sds, String columnName)
Creates a histogram with discrete axis.FigureImpl
catHistPlot(Comparable seriesName, Table t, String columnName)
Creates a histogram with discrete axis.<T extends Comparable>
FigureImplcatHistPlot(Comparable seriesName, List<T> x)
Creates a histogram with discrete axis.<T extends Comparable>
FigureImplcatHistPlot(Comparable seriesName, T[] x)
Creates a histogram with discrete axis.<T1 extends Comparable>
FigureImplcatPlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)
Creates a plot with discrete axis.FigureImpl
catPlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)
Creates a plot with discrete axis.FigureImpl
catPlot(Comparable seriesName, Table t, String categories, String values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, double[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, float[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, int[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, long[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, short[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, DBDateTime[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, Date[] values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, List<T1> values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
FigureImplcatPlot(Comparable seriesName, List<T0> categories, T1[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, T0[] categories, double[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, T0[] categories, float[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, T0[] categories, int[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, T0[] categories, long[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, T0[] categories, short[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, T0[] categories, DBDateTime[] values)
Creates a plot with discrete axis.<T0 extends Comparable>
FigureImplcatPlot(Comparable seriesName, T0[] categories, Date[] values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
FigureImplcatPlot(Comparable seriesName, T0[] categories, List<T1> values)
Creates a plot with discrete axis.<T0 extends Comparable, T1 extends Number>
FigureImplcatPlot(Comparable seriesName, T0[] categories, T1[] values)
Creates a plot with discrete axis.FigureImpl
catPlotBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String... byColumns)
Creates a category plot per distinct grouping value specified inbyColumns
.FigureImpl
catPlotBy(Comparable seriesName, Table t, String categories, String values, String... byColumns)
Creates a category plot per distinct grouping value specified inbyColumns
.FigureImpl
chart(int index)
Returns a chart from this Figure's grid.FigureImpl
chart(int rowNum, int colNum)
Returns a chart from this Figure's grid.FigureImpl
chartRemoveSeries(String... names)
Removes the series with the specifiednames
from this Chart.FigureImpl
chartTitle(boolean showColumnNamesInTitle, SelectableDataSet sds, String... titleColumns)
Sets the title of this Chart.FigureImpl
chartTitle(boolean showColumnNamesInTitle, Table t, String... titleColumns)
Sets the title of this Chart.FigureImpl
chartTitle(SelectableDataSet sds, String... titleColumns)
Sets the title of this Chart.FigureImpl
chartTitle(Table t, String... titleColumns)
Sets the title of this Chart.FigureImpl
chartTitle(String title)
Sets the title of this Chart.FigureImpl
chartTitle(String titleFormat, SelectableDataSet sds, String... titleColumns)
Sets the title of this Chart.FigureImpl
chartTitle(String titleFormat, Table t, String... titleColumns)
Sets the title of this Chart.FigureImpl
chartTitleColor(Paint color)
Sets the color of this Chart's title.FigureImpl
chartTitleColor(String color)
Sets the color of this Chart's title.FigureImpl
chartTitleFont(Font font)
Sets the font of this Chart's title.FigureImpl
chartTitleFont(String family, String style, int size)
Sets the font of this Chart's title.FigureImpl
colSpan(int n)
Sets the size of this Chart within the grid of the figure.FigureImpl
errorBarColor(int color)
Sets the error barPaint
for this dataset.FigureImpl
errorBarColor(int color, Object... keys)
FigureImpl
errorBarColor(Paint color)
Sets the error barPaint
for this dataset.FigureImpl
errorBarColor(Paint color, Object... keys)
FigureImpl
errorBarColor(String color)
Sets the error barPaint
for this dataset.FigureImpl
errorBarColor(String color, Object... keys)
FigureImpl
errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
FigureImplerrorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
FigureImplerrorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
FigureImplerrorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y)
Creates an XY plot with error bars in the x direction.<T3 extends Number>
FigureImplerrorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y)
Creates an XY plot with error bars in the x direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y)
Creates an XY plot with error bars in the x direction.FigureImpl
errorBarXBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String... byColumns)
Creates an errorBarX plot per distinct grouping value specified inbyColumns
.FigureImpl
errorBarXBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String... byColumns)
Creates an errorBarX plot per distinct grouping value specified inbyColumns
.FigureImpl
errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
FigureImplerrorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
FigureImplerrorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
FigureImplerrorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
Creates an XY plot with error bars in both the x and y directions.<T3 extends Number, T4 extends Number, T5 extends Number>
FigureImplerrorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number>
FigureImplerrorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number>
FigureImplerrorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in both the x and y directions.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number>
FigureImplerrorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)
Creates an XY plot with error bars in both the x and y directions.FigureImpl
errorBarXYBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
Creates an errorBar plot per distinct grouping value specified inbyColumns
.FigureImpl
errorBarXYBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)
Creates an errorBar plot per distinct grouping value specified inbyColumns
.FigureImpl
errorBarY(Comparable seriesName, double[] x, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, double[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, double[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, float[] x, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, float[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, float[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, int[] x, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, int[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, int[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, long[] x, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, long[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, long[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, short[] x, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, short[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, short[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, DBDateTime[] x, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, DBDateTime[] x, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, DBDateTime[] x, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, DBDateTime[] x, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, DBDateTime[] x, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarY(Comparable seriesName, DBDateTime[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarY(Comparable seriesName, DBDateTime[] x, T1[] y, T2[] yLow, T3[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, Date[] x, double[] y, double[] yLow, double[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, Date[] x, float[] y, float[] yLow, float[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, Date[] x, int[] y, int[] yLow, int[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, Date[] x, long[] y, long[] yLow, long[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, Date[] x, short[] y, short[] yLow, short[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarY(Comparable seriesName, Date[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarY(Comparable seriesName, Date[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)
Creates an XY plot with error bars in the y direction.<T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarY(Comparable seriesName, Date[] x, T1[] y, T2[] yLow, T3[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
FigureImplerrorBarY(Comparable seriesName, List<T0> x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
FigureImplerrorBarY(Comparable seriesName, List<T0> x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarY(Comparable seriesName, List<T0> x, List<T1> y, List<T2> yLow, List<T3> yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
FigureImplerrorBarY(Comparable seriesName, T0[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number>
FigureImplerrorBarY(Comparable seriesName, T0[] x, Date[] y, Date[] yLow, Date[] yHigh)
Creates an XY plot with error bars in the y direction.<T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number>
FigureImplerrorBarY(Comparable seriesName, T0[] x, T1[] y, T2[] yLow, T3[] yHigh)
Creates an XY plot with error bars in the y direction.FigureImpl
errorBarYBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh, String... byColumns)
Creates a errorBarY plot per distinct grouping value specified inbyColumns
.FigureImpl
errorBarYBy(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh, String... byColumns)
Creates a errorBarY plot per distinct grouping value specified inbyColumns
.FigureImpl
figureRemoveSeries(String... names)
Removes all series withnames
from this Figure.FigureImpl
figureTitle(String title)
Sets the title of this FigureFigureImpl
figureTitleColor(Paint color)
Sets the color of this Figure's titleFigureImpl
figureTitleColor(String color)
Sets the color of this Figure's titleFigureImpl
figureTitleFont(Font font)
Sets the font of this Figure's titleFigureImpl
figureTitleFont(String family, String style, int size)
Sets the font of this Figure's titleFigureImpl
funcNPoints(int npoints)
Sets the number of data points in this dataset.FigureImpl
funcRange(double xmin, double xmax)
Sets the data range for this series.FigureImpl
funcRange(double xmin, double xmax, int npoints)
Sets the data range for this series.BaseFigureImpl
getFigure()
Gets the mutable figure backing this immutable figure.FigureImpl
gradientVisible(boolean visible)
Sets whether bar gradients are visible.FigureImpl
gradientVisible(boolean visible, Object... keys)
FigureImpl
gridLinesVisible(boolean visible)
Sets whether the Chart has grid lines.FigureImpl
group(int group)
Sets the group for this dataset.FigureImpl
group(int group, Object... keys)
FigureImpl
histPlot(Comparable seriesName, double[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, double[] x, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, float[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, float[] x, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, int[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, int[] x, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, long[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, long[] x, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, short[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, short[] x, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, double rangeMin, double rangeMax, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, Table counts)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, Table t, String columnName, double rangeMin, double rangeMax, int nbins)
Creates a histogram.FigureImpl
histPlot(Comparable seriesName, Table t, String columnName, int nbins)
Creates a histogram.<T0 extends Number>
FigureImplhistPlot(Comparable seriesName, List<T0> x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.<T0 extends Number>
FigureImplhistPlot(Comparable seriesName, List<T0> x, int nbins)
Creates a histogram.<T0 extends Number>
FigureImplhistPlot(Comparable seriesName, T0[] x, double rangeMin, double rangeMax, int nbins)
Creates a histogram.<T0 extends Number>
FigureImplhistPlot(Comparable seriesName, T0[] x, int nbins)
Creates a histogram.FigureImpl
invert()
Inverts this Axis so that larger values are closer to the origin.FigureImpl
invert(boolean invert)
Inverts this Axis so that larger values are closer to the origin.FigureImpl
legendColor(Paint color)
Sets the color of the text inside the Chart's legend.FigureImpl
legendColor(String color)
Sets the color of the text inside the Chart's legend.FigureImpl
legendFont(Font font)
Sets the font of this Chart's legend.FigureImpl
legendFont(String family, String style, int size)
Sets the font of this Chart's legend.FigureImpl
legendVisible(boolean visible)
Sets whether the Chart's legend is shown or hidden.FigureImpl
lineColor(int color)
Defines the default line color.FigureImpl
lineColor(int color, Object... keys)
FigureImpl
lineColor(Paint color)
Defines the default line color.FigureImpl
lineColor(Paint color, Object... keys)
FigureImpl
lineColor(String color)
Defines the default line color.FigureImpl
lineColor(String color, Object... keys)
FigureImpl
lineStyle(LineStyle style)
Sets the line style.FigureImpl
lineStyle(LineStyle style, Object... keys)
FigureImpl
linesVisible(Boolean visible)
Sets whether lines are visible.FigureImpl
linesVisible(Boolean visible, Object... keys)
FigureImpl
log()
Sets the AxisTransform as log base 10.FigureImpl
max(double max)
Sets the maximum range of this Axis.FigureImpl
max(SelectableDataSet sds, String valueColumn)
Sets the maximum range of this Axis.FigureImpl
maxRowsInTitle(int maxRowsCount)
Sets the maximum row values that will be shown in title.FigureImpl
min(double min)
Sets the minimum range of this Axis.FigureImpl
min(SelectableDataSet sds, String valueColumn)
Sets the minimum range of this Axis.FigureImpl
minorTicks(int count)
Sets the number of minor ticks between consecutive major ticks.FigureImpl
minorTicksVisible(boolean visible)
Sets whether minor ticks are drawn on this Axis.FigureImpl
newAxes()
Creates newAxes
on this Chart.FigureImpl
newAxes(int dim)
Creates newAxes
on this Chart.FigureImpl
newAxes(String name)
Creates newAxes
on this Chart.FigureImpl
newAxes(String name, int dim)
Creates newAxes
on this Chart.FigureImpl
newChart()
Adds a newChart
to this figure.FigureImpl
newChart(int index)
Adds a newChart
to this figure.FigureImpl
newChart(int rowNum, int colNum)
Adds a newChart
to this figure.FigureImpl
ohlcPlot(Comparable seriesName, IndexableNumericData time, IndexableNumericData open, IndexableNumericData high, IndexableNumericData low, IndexableNumericData close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, DBDateTime[] time, double[] open, double[] high, double[] low, double[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, DBDateTime[] time, float[] open, float[] high, float[] low, float[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, DBDateTime[] time, int[] open, int[] high, int[] low, int[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, DBDateTime[] time, long[] open, long[] high, long[] low, long[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, DBDateTime[] time, short[] open, short[] high, short[] low, short[] close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
FigureImplohlcPlot(Comparable seriesName, DBDateTime[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
FigureImplohlcPlot(Comparable seriesName, DBDateTime[] time, T1[] open, T2[] high, T3[] low, T4[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, Date[] time, double[] open, double[] high, double[] low, double[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, Date[] time, float[] open, float[] high, float[] low, float[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, Date[] time, int[] open, int[] high, int[] low, int[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, Date[] time, long[] open, long[] high, long[] low, long[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlot(Comparable seriesName, Date[] time, short[] open, short[] high, short[] low, short[] close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
FigureImplohlcPlot(Comparable seriesName, Date[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)
Creates an open-high-low-close plot.<T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number>
FigureImplohlcPlot(Comparable seriesName, Date[] time, T1[] open, T2[] high, T3[] low, T4[] close)
Creates an open-high-low-close plot.FigureImpl
ohlcPlotBy(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)
Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.FigureImpl
ohlcPlotBy(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)
Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.FigureImpl
piePercentLabelFormat(String format)
Sets the format of the percentage point label format in pie plots.FigureImpl
piePercentLabelFormat(String format, Object... keys)
<T1 extends Comparable>
FigureImplpiePlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)
Creates a pie plot.FigureImpl
piePlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)
Creates a pie plot.FigureImpl
piePlot(Comparable seriesName, Table t, String categories, String values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, List<T0> categories, double[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, List<T0> categories, float[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, List<T0> categories, int[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, List<T0> categories, long[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, List<T0> categories, short[] values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
FigureImplpiePlot(Comparable seriesName, List<T0> categories, List<T1> values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
FigureImplpiePlot(Comparable seriesName, List<T0> categories, T1[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, T0[] categories, double[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, T0[] categories, float[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, T0[] categories, int[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, T0[] categories, long[] values)
Creates a pie plot.<T0 extends Comparable>
FigureImplpiePlot(Comparable seriesName, T0[] categories, short[] values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
FigureImplpiePlot(Comparable seriesName, T0[] categories, List<T1> values)
Creates a pie plot.<T0 extends Comparable, T1 extends Number>
FigureImplpiePlot(Comparable seriesName, T0[] categories, T1[] values)
Creates a pie plot.FigureImpl
plot(Comparable seriesName, double[] x, double[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, double[] x, float[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, double[] x, int[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, double[] x, long[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, double[] x, short[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, double[] x, DBDateTime[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, double[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, double[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, double[] x, T1[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, float[] x, double[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, float[] x, float[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, float[] x, int[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, float[] x, long[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, float[] x, short[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, float[] x, DBDateTime[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, float[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, float[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, float[] x, T1[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, int[] x, double[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, int[] x, float[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, int[] x, int[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, int[] x, long[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, int[] x, short[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, int[] x, DBDateTime[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, int[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, int[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, int[] x, T1[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, long[] x, double[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, long[] x, float[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, long[] x, int[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, long[] x, long[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, long[] x, short[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, long[] x, DBDateTime[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, long[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, long[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, long[] x, T1[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, short[] x, double[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, short[] x, float[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, short[] x, int[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, short[] x, long[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, short[] x, short[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, short[] x, DBDateTime[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, short[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, short[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, short[] x, T1[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, IndexableNumericData x, IndexableNumericData y, boolean hasXTimeAxis, boolean hasYTimeAxis)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, SelectableDataSet sds, String x, String y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Table t, String x, String y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DBDateTime[] x, double[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DBDateTime[] x, float[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DBDateTime[] x, int[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DBDateTime[] x, long[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DBDateTime[] x, short[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DBDateTime[] x, DBDateTime[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DBDateTime[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, DBDateTime[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, DBDateTime[] x, T1[] y)
Creates an XY plot.<T extends Number>
FigureImplplot(Comparable seriesName, groovy.lang.Closure<T> function)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Date[] x, double[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Date[] x, float[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Date[] x, int[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Date[] x, long[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Date[] x, short[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Date[] x, DBDateTime[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, Date[] x, Date[] y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, Date[] x, List<T1> y)
Creates an XY plot.<T1 extends Number>
FigureImplplot(Comparable seriesName, Date[] x, T1[] y)
Creates an XY plot.FigureImpl
plot(Comparable seriesName, DoubleUnaryOperator function)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, double[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, float[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, int[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, long[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, short[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, DBDateTime[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, Date[] y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, List<T1> y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
FigureImplplot(Comparable seriesName, List<T0> x, T1[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, double[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, float[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, int[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, long[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, short[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, DBDateTime[] y)
Creates an XY plot.<T0 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, Date[] y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, List<T1> y)
Creates an XY plot.<T0 extends Number, T1 extends Number>
FigureImplplot(Comparable seriesName, T0[] x, T1[] y)
Creates an XY plot.FigureImpl
plotBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String... byColumns)
Creates an XY plot per distinct grouping value specified inbyColumns
.FigureImpl
plotBy(Comparable seriesName, Table t, String x, String y, String... byColumns)
Creates an XY plot per distinct grouping value specified inbyColumns
.FigureImpl
plotOrientation(String orientation)
Sets the orientation of plots in this Chart.FigureImpl
plotStyle(PlotStyle style)
Sets thePlotStyle
of this Axes.FigureImpl
plotStyle(String style)
Sets thePlotStyle
of this Axes.FigureImpl
pointColor(int color)
Sets the point color.FigureImpl
pointColor(int... colors)
Sets the point color.FigureImpl
pointColor(int[] colors, Object... keys)
FigureImpl
pointColor(int color, Object... keys)
<T extends Paint>
FigureImplpointColor(IndexableData<T> colors)
Sets the point color.<T extends Paint>
FigureImplpointColor(IndexableData<T> colors, Object... keys)
FigureImpl
pointColor(SelectableDataSet sds, String columnName)
Sets the point color.FigureImpl
pointColor(SelectableDataSet sds, String columnName, Object... keys)
FigureImpl
pointColor(SelectableDataSet sds, String keyColumn, String valueColumn)
Sets the point color.FigureImpl
pointColor(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)
FigureImpl
pointColor(Table t, String columnName)
Sets the point color.FigureImpl
pointColor(Table t, String columnName, Object... keys)
FigureImpl
pointColor(Table t, String keyColumn, String valueColumn)
Sets the point color.FigureImpl
pointColor(Table t, String keyColumn, String valueColumn, Object... keys)
FigureImpl
pointColor(Paint color)
Sets the point color.FigureImpl
pointColor(Paint... colors)
Sets the point color.FigureImpl
pointColor(Paint[] colors, Object... keys)
FigureImpl
pointColor(Paint color, Object... keys)
<COLOR extends Paint>
FigureImplpointColor(groovy.lang.Closure<COLOR> colors)
Sets the point color.<COLOR extends Paint>
FigureImplpointColor(groovy.lang.Closure<COLOR> colors, Object... keys)
FigureImpl
pointColor(Comparable category, int color)
Sets the point color.FigureImpl
pointColor(Comparable category, int color, Object... keys)
FigureImpl
pointColor(Comparable category, Paint color)
Sets the point color.FigureImpl
pointColor(Comparable category, Paint color, Object... keys)
FigureImpl
pointColor(Comparable category, String color)
Sets the point color.FigureImpl
pointColor(Comparable category, String color, Object... keys)
FigureImpl
pointColor(Integer... colors)
Sets the point color.FigureImpl
pointColor(Integer[] colors, Object... keys)
FigureImpl
pointColor(String color)
Sets the point color.FigureImpl
pointColor(String... colors)
Sets the point color.FigureImpl
pointColor(String[] colors, Object... keys)
FigureImpl
pointColor(String color, Object... keys)
<COLOR extends Paint>
FigureImplpointColor(Function<Comparable,COLOR> colors)
Sets the point color.<COLOR extends Paint>
FigureImplpointColor(Function<Comparable,COLOR> colors, Object... keys)
<CATEGORY extends Comparable, COLOR extends Paint>
FigureImplpointColor(Map<CATEGORY,COLOR> colors)
Sets the point color.<CATEGORY extends Comparable, COLOR extends Paint>
FigureImplpointColor(Map<CATEGORY,COLOR> colors, Object... keys)
<T extends Paint>
FigureImplpointColorByY(groovy.lang.Closure<T> colors)
Sets the point color for a data point based upon the y-value.<T extends Paint>
FigureImplpointColorByY(groovy.lang.Closure<T> colors, Object... keys)
<T extends Paint>
FigureImplpointColorByY(Function<Double,T> colors)
Sets the point color for a data point based upon the y-value.<T extends Paint>
FigureImplpointColorByY(Function<Double,T> colors, Object... keys)
<T extends Paint>
FigureImplpointColorByY(Map<Double,T> colors)
Sets the point color for a data point based upon the y-value.<T extends Paint>
FigureImplpointColorByY(Map<Double,T> colors, Object... keys)
FigureImpl
pointColorInteger(IndexableData<Integer> colors)
Sets the point color.FigureImpl
pointColorInteger(IndexableData<Integer> colors, Object... keys)
<COLOR extends Integer>
FigureImplpointColorInteger(groovy.lang.Closure<COLOR> colors)
Sets the point color.<COLOR extends Integer>
FigureImplpointColorInteger(groovy.lang.Closure<COLOR> colors, Object... keys)
<COLOR extends Integer>
FigureImplpointColorInteger(Function<Comparable,COLOR> colors)
Sets the point color.<COLOR extends Integer>
FigureImplpointColorInteger(Function<Comparable,COLOR> colors, Object... keys)
<CATEGORY extends Comparable, COLOR extends Integer>
FigureImplpointColorInteger(Map<CATEGORY,COLOR> colors)
Sets the point color.<CATEGORY extends Comparable, COLOR extends Integer>
FigureImplpointColorInteger(Map<CATEGORY,COLOR> colors, Object... keys)
FigureImpl
pointLabel(IndexableData<?> labels)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(IndexableData<?> labels, Object... keys)
FigureImpl
pointLabel(SelectableDataSet sds, String columnName)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(SelectableDataSet sds, String columnName, Object... keys)
FigureImpl
pointLabel(SelectableDataSet sds, String keyColumn, String valueColumn)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)
FigureImpl
pointLabel(Table t, String columnName)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(Table t, String columnName, Object... keys)
FigureImpl
pointLabel(Table t, String keyColumn, String valueColumn)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(Table t, String keyColumn, String valueColumn, Object... keys)
<LABEL> FigureImpl
pointLabel(groovy.lang.Closure<LABEL> labels)
Sets the point label for data point i from index i of the input labels.<LABEL> FigureImpl
pointLabel(groovy.lang.Closure<LABEL> labels, Object... keys)
FigureImpl
pointLabel(Comparable category, Object label)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(Comparable category, Object label, Object... keys)
FigureImpl
pointLabel(Object label)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(Object... labels)
Sets the point label for data point i from index i of the input labels.FigureImpl
pointLabel(Object[] labels, Object... keys)
FigureImpl
pointLabel(Object label, Object... keys)
<LABEL> FigureImpl
pointLabel(Function<Comparable,LABEL> labels)
Sets the point label for data point i from index i of the input labels.<LABEL> FigureImpl
pointLabel(Function<Comparable,LABEL> labels, Object... keys)
<CATEGORY extends Comparable, LABEL>
FigureImplpointLabel(Map<CATEGORY,LABEL> labels)
Sets the point label for data point i from index i of the input labels.<CATEGORY extends Comparable, LABEL>
FigureImplpointLabel(Map<CATEGORY,LABEL> labels, Object... keys)
FigureImpl
pointLabelFormat(String format)
Sets the point label format.FigureImpl
pointLabelFormat(String format, Object... keys)
FigureImpl
pointShape(IndexableData<String> shapes)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(IndexableData<String> shapes, Object... keys)
FigureImpl
pointShape(SelectableDataSet sds, String columnName)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(SelectableDataSet sds, String columnName, Object... keys)
FigureImpl
pointShape(SelectableDataSet sds, String keyColumn, String valueColumn)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)
FigureImpl
pointShape(Table t, String columnName)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(Table t, String columnName, Object... keys)
FigureImpl
pointShape(Table t, String keyColumn, String valueColumn)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(Table t, String keyColumn, String valueColumn, Object... keys)
FigureImpl
pointShape(Shape shape)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(Shape... shapes)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(Shape[] shapes, Object... keys)
FigureImpl
pointShape(Shape shape, Object... keys)
FigureImpl
pointShape(groovy.lang.Closure<String> shapes)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(groovy.lang.Closure<String> shapes, Object... keys)
FigureImpl
pointShape(Comparable category, Shape shape)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(Comparable category, Shape shape, Object... keys)
FigureImpl
pointShape(Comparable category, String shape)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(Comparable category, String shape, Object... keys)
FigureImpl
pointShape(String shape)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(String... shapes)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(String[] shapes, Object... keys)
FigureImpl
pointShape(String shape, Object... keys)
FigureImpl
pointShape(Function<Comparable,String> shapes)
Sets the point shapes for data point i from index i of the input labels.FigureImpl
pointShape(Function<Comparable,String> shapes, Object... keys)
<CATEGORY extends Comparable>
FigureImplpointShape(Map<CATEGORY,String> shapes)
Sets the point shapes for data point i from index i of the input labels.<CATEGORY extends Comparable>
FigureImplpointShape(Map<CATEGORY,String> shapes, Object... keys)
FigureImpl
pointSize(double factor)
Sets the point size.FigureImpl
pointSize(double... factors)
Sets the point size.FigureImpl
pointSize(double[] factors, Object... keys)
FigureImpl
pointSize(int factor)
Sets the point size.FigureImpl
pointSize(int... factors)
Sets the point size.FigureImpl
pointSize(int[] factors, Object... keys)
FigureImpl
pointSize(long factor)
Sets the point size.FigureImpl
pointSize(long... factors)
Sets the point size.FigureImpl
pointSize(long[] factors, Object... keys)
<CATEGORY extends Comparable>
FigureImplpointSize(CATEGORY[] categories, double[] factors)
Sets the point size.<CATEGORY extends Comparable>
FigureImplpointSize(CATEGORY[] categories, double[] factors, Object... keys)
<CATEGORY extends Comparable>
FigureImplpointSize(CATEGORY[] categories, int[] factors)
Sets the point size.<CATEGORY extends Comparable>
FigureImplpointSize(CATEGORY[] categories, int[] factors, Object... keys)
<CATEGORY extends Comparable>
FigureImplpointSize(CATEGORY[] categories, long[] factors)
Sets the point size.<CATEGORY extends Comparable>
FigureImplpointSize(CATEGORY[] categories, long[] factors, Object... keys)
<CATEGORY extends Comparable, NUMBER extends Number>
FigureImplpointSize(CATEGORY[] categories, NUMBER[] factors)
Sets the point size.<CATEGORY extends Comparable, NUMBER extends Number>
FigureImplpointSize(CATEGORY[] categories, NUMBER[] factors, Object... keys)
FigureImpl
pointSize(IndexableData<Double> factors)
Sets the point size.FigureImpl
pointSize(IndexableData<Double> factors, Object... keys)
FigureImpl
pointSize(SelectableDataSet sds, String columnName)
Sets the point size.FigureImpl
pointSize(SelectableDataSet sds, String columnName, Object... keys)
FigureImpl
pointSize(SelectableDataSet sds, String keyColumn, String valueColumn)
Sets the point size.FigureImpl
pointSize(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)
FigureImpl
pointSize(Table t, String columnName)
Sets the point size.FigureImpl
pointSize(Table t, String columnName, Object... keys)
FigureImpl
pointSize(Table t, String keyColumn, String valueColumn)
Sets the point size.FigureImpl
pointSize(Table t, String keyColumn, String valueColumn, Object... keys)
<NUMBER extends Number>
FigureImplpointSize(groovy.lang.Closure<NUMBER> factors)
Sets the point size.<NUMBER extends Number>
FigureImplpointSize(groovy.lang.Closure<NUMBER> factors, Object... keys)
FigureImpl
pointSize(Comparable category, double factor)
Sets the point size.FigureImpl
pointSize(Comparable category, double factor, Object... keys)
FigureImpl
pointSize(Comparable category, int factor)
Sets the point size.FigureImpl
pointSize(Comparable category, int factor, Object... keys)
FigureImpl
pointSize(Comparable category, long factor)
Sets the point size.FigureImpl
pointSize(Comparable category, long factor, Object... keys)
FigureImpl
pointSize(Comparable category, Number factor)
Sets the point size.FigureImpl
pointSize(Comparable category, Number factor, Object... keys)
FigureImpl
pointSize(Number factor)
Sets the point size.FigureImpl
pointSize(Number factor, Object... keys)
<NUMBER extends Number>
FigureImplpointSize(Function<Comparable,NUMBER> factors)
Sets the point size.<NUMBER extends Number>
FigureImplpointSize(Function<Comparable,NUMBER> factors, Object... keys)
<CATEGORY extends Comparable, NUMBER extends Number>
FigureImplpointSize(Map<CATEGORY,NUMBER> factors)
Sets the point size.<CATEGORY extends Comparable, NUMBER extends Number>
FigureImplpointSize(Map<CATEGORY,NUMBER> factors, Object... keys)
<T extends Number>
FigureImplpointSize(T[] factors)
Sets the point size.<T extends Number>
FigureImplpointSize(T[] factors, Object... keys)
FigureImpl
pointsVisible(Boolean visible)
Sets whether points are visible.FigureImpl
pointsVisible(Boolean visible, Object... keys)
FigureImpl
range(double min, double max)
Sets the range of this Axis to [min
,max
] inclusive.FigureImpl
removeChart(int index)
Removes a chart from the Figure's grid.FigureImpl
removeChart(int rowNum, int colNum)
Removes a chart from the Figure's grid.FigureImpl
rowSpan(int n)
Sets the size of this Chart within the grid of the figure.FigureImpl
save(String saveLocation)
Saves the Figure as an image.FigureImpl
save(String saveLocation, boolean wait, long timeoutSeconds)
Saves the Figure as an image.FigureImpl
save(String saveLocation, int width, int height)
Saves the Figure as an image.FigureImpl
save(String saveLocation, int width, int height, boolean wait, long timeoutSeconds)
Saves the Figure as an image.FigureImpl
series(int id)
Gets a data series.FigureImpl
series(Comparable name)
Gets a data series.FigureImpl
seriesColor(int color)
Defines the default line and point color.FigureImpl
seriesColor(int color, Object... keys)
FigureImpl
seriesColor(Paint color)
Defines the default line and point color.FigureImpl
seriesColor(Paint color, Object... keys)
FigureImpl
seriesColor(String color)
Defines the default line and point color.FigureImpl
seriesColor(String color, Object... keys)
FigureImpl
seriesNamingFunction(groovy.lang.Closure<String> namingFunction)
Defines the procedure to name a generated series.FigureImpl
seriesNamingFunction(Function<Object,String> namingFunction)
Defines the procedure to name a generated series.FigureImpl
show()
Creates a GUI widget for the figure.FigureImpl
span(int rowSpan, int colSpan)
Sets the size of this Chart within the grid of the figure.FigureImpl
theme(Theme theme)
Sets theTheme
of this FigureFigureImpl
theme(String theme)
Sets theTheme
of this FigureFigureImpl
tickLabelAngle(double angle)
Sets the angle the tick labels of this Axis are drawn at.FigureImpl
ticks(double gapBetweenTicks)
Sets the tick locations.FigureImpl
ticks(double[] tickLocations)
Sets the tick locations.FigureImpl
ticksFont(Font font)
Sets the font for this Axis's ticks.FigureImpl
ticksFont(String family, String style, int size)
Sets the font for this Axis's ticks.FigureImpl
ticksVisible(boolean visible)
Sets whether ticks are drawn on this Axis.FigureImpl
toolTipPattern(String format)
Sets the tooltip format.FigureImpl
toolTipPattern(String format, Object... keys)
FigureImpl
transform(AxisTransform transform)
Sets theAxisTransform
for this Axis.FigureImpl
twin()
Creates a new Axes instance which shares the sameAxis
objects as this Axes.FigureImpl
twin(int dim)
Creates a new Axes instance which shares the sameAxis
objects as this Axes.FigureImpl
twin(String name)
Creates a new Axes instance which shares the sameAxis
objects as this Axes.FigureImpl
twin(String name, int dim)
Creates a new Axes instance which shares the sameAxis
objects as this Axes.FigureImpl
twinX()
Creates a new Axes instance which shares the same x-Axis
as this Axes.FigureImpl
twinX(String name)
Creates a new Axes instance which shares the same x-Axis
as this Axes.FigureImpl
twinY()
Creates a new Axes instance which shares the same y-Axis
as this Axes.FigureImpl
twinY(String name)
Creates a new Axes instance which shares the same y-Axis
as this Axes.FigureImpl
updateInterval(long updateIntervalMillis)
Sets the update interval of this Figure.FigureImpl
xAxis()
Gets theAxis
representing the x-axisFigureImpl
xBusinessTime()
FigureImpl
xBusinessTime(SelectableDataSet sds, String valueColumn)
FigureImpl
xBusinessTime(BusinessCalendar calendar)
FigureImpl
xColor(Paint color)
Sets the color of the x-Axis
FigureImpl
xColor(String color)
Sets the color of the x-Axis
FigureImpl
xFormat(AxisFormat format)
Sets theAxisFormat
of the x-Axis
FigureImpl
xFormatPattern(String pattern)
Sets the format pattern of the x-Axis
FigureImpl
xGridLinesVisible(boolean visible)
Sets whether the Chart has grid lines in the x direction.FigureImpl
xInvert()
Inverts the x-Axis
so that larger values are closer to the origin.FigureImpl
xInvert(boolean invert)
Inverts the x-Axis
so that larger values are closer to the origin.FigureImpl
xLabel(String label)
Sets the label of the x-Axis
FigureImpl
xLabelFont(Font font)
Sets the font for the x-Axis
label.FigureImpl
xLabelFont(String family, String style, int size)
Sets the font for the x-Axis
label.FigureImpl
xLog()
Sets theAxisTransform
of the x-Axis
to log base 10FigureImpl
xMax(double max)
Sets the maximum of the x-Axis
.FigureImpl
xMax(SelectableDataSet sds, String valueColumn)
Sets the maximum of the x-Axis
.FigureImpl
xMin(double min)
Sets the minimum of the x-Axis
.FigureImpl
xMin(SelectableDataSet sds, String valueColumn)
Sets the minimum of the x-Axis
.FigureImpl
xMinorTicks(int count)
Sets the number of minor ticks between consecutive major ticks in the x-Axis
.FigureImpl
xMinorTicksVisible(boolean visible)
Sets whether the x-Axis
minor ticks are visible.FigureImpl
xRange(double min, double max)
Sets the range of the x-Axis
FigureImpl
xTickLabelAngle(double angle)
Sets the angle the tick labels the x-Axis
are drawn at.FigureImpl
xTicks(double gapBetweenTicks)
Sets the x-Axis
ticks.FigureImpl
xTicks(double[] tickLocations)
Sets the x-Axis
ticks.FigureImpl
xTicksFont(Font font)
Sets the font for the x-Axis
ticks.FigureImpl
xTicksFont(String family, String style, int size)
Sets the font for the x-Axis
ticks.FigureImpl
xTicksVisible(boolean visible)
Sets whether the x-Axis
ticks are visible.FigureImpl
xToolTipPattern(String format)
Sets the x-value tooltip format.FigureImpl
xToolTipPattern(String format, Object... keys)
FigureImpl
xTransform(AxisTransform transform)
Sets theAxisTransform
of the x-Axis
FigureImpl
yAxis()
Gets theAxis
representing the y-axisFigureImpl
yBusinessTime()
FigureImpl
yBusinessTime(SelectableDataSet sds, String valueColumn)
FigureImpl
yBusinessTime(BusinessCalendar calendar)
FigureImpl
yColor(Paint color)
Sets the color of the y-Axis
FigureImpl
yColor(String color)
Sets the color of the y-Axis
FigureImpl
yFormat(AxisFormat format)
Sets theAxisFormat
of the y-Axis
FigureImpl
yFormatPattern(String pattern)
Sets the format pattern of the y-Axis
FigureImpl
yGridLinesVisible(boolean visible)
Sets whether the Chart has grid lines in the y directionFigureImpl
yInvert()
Inverts the y-Axis
so that larger values are closer to the origin.FigureImpl
yInvert(boolean invert)
Inverts the y-Axis
so that larger values are closer to the origin.FigureImpl
yLabel(String label)
Sets the label of the y-Axis
FigureImpl
yLabelFont(Font font)
Sets the font for the y-Axis
label.FigureImpl
yLabelFont(String family, String style, int size)
Sets the font for the y-Axis
label.FigureImpl
yLog()
Sets theAxisTransform
of the y-Axis
to log base 10FigureImpl
yMax(double max)
Sets the maximum of the y-Axis
.FigureImpl
yMax(SelectableDataSet sds, String valueColumn)
Sets the maximum of the y-Axis
.FigureImpl
yMin(double min)
Sets the minimum of the y-Axis
.FigureImpl
yMin(SelectableDataSet sds, String valueColumn)
Sets the minimum of the y-Axis
.FigureImpl
yMinorTicks(int count)
Sets the number of minor ticks between consecutive major ticks in the y-Axis
.FigureImpl
yMinorTicksVisible(boolean visible)
Sets whether the y-Axis
minor ticks are visible.FigureImpl
yRange(double min, double max)
Sets the range of the y-Axis
FigureImpl
yTickLabelAngle(double angle)
Sets the angle the tick labels the y-Axis
are drawn at.FigureImpl
yTicks(double gapBetweenTicks)
Sets the y-Axis
ticks.FigureImpl
yTicks(double[] tickLocations)
Sets the y-Axis
ticks.FigureImpl
yTicksFont(Font font)
Sets the font for the y-Axis
ticks.FigureImpl
yTicksFont(String family, String style, int size)
Sets the font for the y-Axis
ticks.FigureImpl
yTicksVisible(boolean visible)
Sets whether the y-Axis
ticks are visible.FigureImpl
yToolTipPattern(String format)
Sets the y-value tooltip format.FigureImpl
yToolTipPattern(String format, Object... keys)
FigureImpl
yTransform(AxisTransform transform)
Sets theAxisTransform
of the y-Axis
-
Constructor Details
-
Method Details
-
getFigure
Gets the mutable figure backing this immutable figure.- Returns:
- mutable figure backing this immutable figure
-
show
Creates a GUI widget for the figure. -
save
Description copied from interface:BaseFigure
Saves the Figure as an image.- Specified by:
save
in interfaceBaseFigure
- Specified by:
save
in interfaceFigure
- Parameters:
saveLocation
- save location. Must not be null- Returns:
- figure
-
save
Description copied from interface:BaseFigure
Saves the Figure as an image.- Specified by:
save
in interfaceBaseFigure
- Specified by:
save
in interfaceFigure
- Parameters:
saveLocation
- save location. Must not be nullwidth
- image widthheight
- image height- Returns:
- figure
-
save
Description copied from interface:BaseFigure
Saves the Figure as an image.- Specified by:
save
in interfaceBaseFigure
- Specified by:
save
in interfaceFigure
- Parameters:
saveLocation
- save location. Must not be nullwait
- whether to hold the calling thread until the file is writtentimeoutSeconds
- timeout in seconds to wait.- Returns:
- figure
-
save
public FigureImpl save(String saveLocation, int width, int height, boolean wait, long timeoutSeconds)Description copied from interface:BaseFigure
Saves the Figure as an image.- Specified by:
save
in interfaceBaseFigure
- Specified by:
save
in interfaceFigure
- Parameters:
saveLocation
- save location. Must not be nullwidth
- image widthheight
- image heightwait
- whether to hold the calling thread until the file is writtentimeoutSeconds
- timeout in seconds to wait.- Returns:
- figure
-
axes
Description copied from interface:Chart
Gets an axes. -
axes
Description copied from interface:Chart
Gets an axes. -
axesRemoveSeries
Description copied from interface:Axes
Removes the series with the specifiednames
from this Axes.- Specified by:
axesRemoveSeries
in interfaceAxes
- Specified by:
axesRemoveSeries
in interfaceFigure
- Parameters:
names
- series names- Returns:
- this Chart
-
axis
Description copied from interface:Axes
Gets theAxis
at dimensiondim
. The x-axis is dimension 0, y-axis dimension 1, and the z-axis dimension 2. -
axisColor
Description copied from interface:Axis
Sets the color for this Axis line and tick marks. -
axisColor
Description copied from interface:Axis
Sets the color for this Axis line and tick marks. -
axisFormat
Description copied from interface:Axis
Sets theAxisFormat
for this Axis.- Specified by:
axisFormat
in interfaceAxis
- Specified by:
axisFormat
in interfaceFigure
- Parameters:
format
- axis format- Returns:
- this Axis
-
axisFormatPattern
Description copied from interface:Axis
Sets the format pattern for this Axis's labels.- Specified by:
axisFormatPattern
in interfaceAxis
- Specified by:
axisFormatPattern
in interfaceFigure
- Parameters:
pattern
- axis format pattern- Returns:
- this Axis
-
axisLabel
Description copied from interface:Axis
Sets the label for this Axis. -
axisLabelFont
Description copied from interface:Axis
Sets the font for this Axis's label.- Specified by:
axisLabelFont
in interfaceAxis
- Specified by:
axisLabelFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Axis
-
axisLabelFont
Description copied from interface:Axis
Sets the font for this Axis's label.- Specified by:
axisLabelFont
in interfaceAxis
- Specified by:
axisLabelFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
businessTime
Description copied from interface:Axis
Sets this Axis'sAxisTransform
as anAxisTransformBusinessCalendar
.- Specified by:
businessTime
in interfaceAxis
- Specified by:
businessTime
in interfaceFigure
- Returns:
- this Axis using the default business calendar.
-
businessTime
Description copied from interface:Axis
Sets this Axis'sAxisTransform
as anAxisTransformBusinessCalendar
.- Specified by:
businessTime
in interfaceAxis
- Specified by:
businessTime
in interfaceFigure
- Parameters:
calendar
- business calendar of theAxisTransformBusinessCalendar
- Returns:
- this Axis using the specified business calendar.
-
businessTime
Description copied from interface:Axis
Sets this Axis'sAxisTransform
as anAxisTransformBusinessCalendar
.- Specified by:
businessTime
in interfaceAxis
- Specified by:
businessTime
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing the business calendar.valueColumn
- name of a column containing String values, where each value is the name of aBusinessCalendar
.- Returns:
- this Axis using the business calendar from row 0 of the filtered
sds
for the business calendar. If no value is found, no transform will be applied.
-
catErrorBar
public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, T1[] values, T2[] yLow, T3[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, double[] values, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, float[] values, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, int[] values, int[] yLow, int[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, long[] values, long[] yLow, long[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, DBDateTime[] values, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, Date[] values, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, short[] values, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl catErrorBar(Comparable seriesName, T0[] categories, List<T1> values, List<T2> yLow, List<T3> yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl catErrorBar(Comparable seriesName, List<T0> categories, T1[] values, T2[] yLow, T3[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, List<T0> categories, double[] values, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, List<T0> categories, float[] values, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, List<T0> categories, int[] values, int[] yLow, int[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, List<T0> categories, long[] values, long[] yLow, long[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable> FigureImpl catErrorBar(Comparable seriesName, List<T0> categories, short[] values, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public <T0 extends Comparable, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl catErrorBar(Comparable seriesName, List<T0> categories, List<T1> values, List<T2> yLow, List<T3> yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Type Parameters:
T0
- type of the categorical dataT1
- type of the numeric dataT2
- type of the numeric dataT3
- type of the numeric data- Parameters:
seriesName
- name of the created datasetcategories
- discrete datavalues
- numeric datayLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
catErrorBar
public FigureImpl catErrorBar(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table).categories
- column insds
that holds the discrete datavalues
- column insds
that holds the numeric datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
catErrorBar
public FigureImpl catErrorBar(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh)Description copied from interface:Axes
Creates a category error bar plot with whiskers in the y direction.- Specified by:
catErrorBar
in interfaceAxes
- Specified by:
catErrorBar
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
that holds the discrete datavalues
- column int
that holds the numeric datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
catErrorBarBy
public FigureImpl catErrorBarBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String yLow, String yHigh, String... byColumns)Description copied from interface:Axes
Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.- Specified by:
catErrorBarBy
in interfaceAxes
- Specified by:
catErrorBarBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table).categories
- column insds
that holds the discrete datavalues
- column insds
that holds the numeric datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimensionbyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
catErrorBarBy
public FigureImpl catErrorBarBy(Comparable seriesName, Table t, String categories, String values, String yLow, String yHigh, String... byColumns)Description copied from interface:Axes
Creates a catErrorBar plot for each distinct grouping value specified inbyColumns
.- Specified by:
catErrorBarBy
in interfaceAxes
- Specified by:
catErrorBarBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
that holds the discrete datavalues
- column int
that holds the numeric datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimensionbyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Type Parameters:
T
- data type of the categorical data- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Type Parameters:
T
- data type of the categorical data- Parameters:
seriesName
- name of the created datasetx
- data- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)columnName
- column insds
- Returns:
- dataset created for plot
-
catHistPlot
Description copied from interface:Axes
Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.- Specified by:
catHistPlot
in interfaceAxes
- Specified by:
catHistPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablecolumnName
- column int
- Returns:
- dataset created for plot
-
catPlot
public <T0 extends Comparable, T1 extends Number> FigureImpl catPlot(Comparable seriesName, T0[] categories, T1[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, T0[] categories, double[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, T0[] categories, float[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, T0[] categories, int[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, T0[] categories, long[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, T0[] categories, DBDateTime[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, T0[] categories, Date[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, T0[] categories, short[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable, T1 extends Number> FigureImpl catPlot(Comparable seriesName, T0[] categories, List<T1> values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T1 extends Comparable> FigureImpl catPlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable, T1 extends Number> FigureImpl catPlot(Comparable seriesName, List<T0> categories, T1[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, List<T0> categories, double[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, List<T0> categories, float[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, List<T0> categories, int[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, List<T0> categories, long[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, List<T0> categories, DBDateTime[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, List<T0> categories, Date[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable> FigureImpl catPlot(Comparable seriesName, List<T0> categories, short[] values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public <T0 extends Comparable, T1 extends Number> FigureImpl catPlot(Comparable seriesName, List<T0> categories, List<T1> values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlot
public FigureImpl catPlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates.- Specified by:
catPlot
in interfaceAxes
- Specified by:
catPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)categories
- column insds
holding discrete datavalues
- column insds
holding numeric data- Returns:
- dataset created for plot
-
catPlot
Description copied from interface:Axes
Creates a plot with discrete axis. Discrete data must not have duplicates. -
catPlotBy
public FigureImpl catPlotBy(Comparable seriesName, SelectableDataSet sds, String categories, String values, String... byColumns)Description copied from interface:Axes
Creates a category plot per distinct grouping value specified inbyColumns
.- Specified by:
catPlotBy
in interfaceAxes
- Specified by:
catPlotBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)categories
- column insds
holding discrete datavalues
- column insds
holding numeric databyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
catPlotBy
public FigureImpl catPlotBy(Comparable seriesName, Table t, String categories, String values, String... byColumns)Description copied from interface:Axes
Creates a category plot per distinct grouping value specified inbyColumns
.- Specified by:
catPlotBy
in interfaceAxes
- Specified by:
catPlotBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablecategories
- column int
holding discrete datavalues
- column int
holding numeric databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
chart
Description copied from interface:BaseFigure
Returns a chart from this Figure's grid.- Specified by:
chart
in interfaceBaseFigure
- Specified by:
chart
in interfaceFigure
- Parameters:
index
- index from the Figure's grid to remove. The index starts at 0 in the upper left hand corner of the grid and increases going left to right, top to bottom. E.g. for a 2x2 Figure, the indices would be [0, 1] [2, 3].- Returns:
- selected
Chart
-
chart
Description copied from interface:BaseFigure
Returns a chart from this Figure's grid.- Specified by:
chart
in interfaceBaseFigure
- Specified by:
chart
in interfaceFigure
- Parameters:
rowNum
- row index in this Figure's grid. The row index starts at 0.colNum
- column index in this Figure's grid. The column index starts at 0.- Returns:
- selected
Chart
-
chartRemoveSeries
Description copied from interface:Chart
Removes the series with the specifiednames
from this Chart.- Specified by:
chartRemoveSeries
in interfaceChart
- Specified by:
chartRemoveSeries
in interfaceFigure
- Parameters:
names
- series names- Returns:
- this Chart
-
chartTitle
Description copied from interface:Chart
Sets the title of this Chart.- Specified by:
chartTitle
in interfaceChart
- Specified by:
chartTitle
in interfaceFigure
- Parameters:
title
- title- Returns:
- this
Chart
-
chartTitle
Description copied from interface:Chart
Sets the title of this Chart.- Specified by:
chartTitle
in interfaceChart
- Specified by:
chartTitle
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick table)titleColumns
- columns to include in the chart title- Returns:
- this
Chart
with the title set to display comma-separated values from the table
-
chartTitle
Description copied from interface:Chart
Sets the title of this Chart.- Specified by:
chartTitle
in interfaceChart
- Specified by:
chartTitle
in interfaceFigure
- Parameters:
t
- tabletitleColumns
- columns to include in the chart title- Returns:
- this
Chart
with the title set to display comma-separated values from the table
-
chartTitle
public FigureImpl chartTitle(boolean showColumnNamesInTitle, SelectableDataSet sds, String... titleColumns)Description copied from interface:Chart
Sets the title of this Chart.- Specified by:
chartTitle
in interfaceChart
- Specified by:
chartTitle
in interfaceFigure
- Parameters:
showColumnNamesInTitle
- Whether to show column names in title. If this is true, the title format will include the column name before the comma separated values; otherwise only the comma separated values will be included.sds
- selectable data set (e.g. OneClick table)titleColumns
- columns to include in the chart title- Returns:
- this
Chart
with the title set to display comma-separated values from the table
-
chartTitle
Description copied from interface:Chart
Sets the title of this Chart.- Specified by:
chartTitle
in interfaceChart
- Specified by:
chartTitle
in interfaceFigure
- Parameters:
showColumnNamesInTitle
- Whether to show column names in title. If this is true, the title format will include the column name before the comma separated values; otherwise only the comma separated values will be included.t
- tabletitleColumns
- columns to include in the chart title- Returns:
- this
Chart
with the title set to display comma-separated values from the table
-
chartTitle
Description copied from interface:Chart
Sets the title of this Chart.- Specified by:
chartTitle
in interfaceChart
- Specified by:
chartTitle
in interfaceFigure
- Parameters:
titleFormat
- aMessageFormat
format string for the chart titlesds
- selectable data set (e.g. OneClick table)titleColumns
- columns to include in the chart title- Returns:
- this
Chart
with the title set to display values from the table
-
chartTitle
Description copied from interface:Chart
Sets the title of this Chart.- Specified by:
chartTitle
in interfaceChart
- Specified by:
chartTitle
in interfaceFigure
- Parameters:
titleFormat
- aMessageFormat
format string for the chart titlet
- tabletitleColumns
- columns to include in the chart title- Returns:
- this
Chart
with the title set to display values from the table
-
chartTitleColor
Description copied from interface:Chart
Sets the color of this Chart's title.- Specified by:
chartTitleColor
in interfaceChart
- Specified by:
chartTitleColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this Chart
-
chartTitleColor
Description copied from interface:Chart
Sets the color of this Chart's title.- Specified by:
chartTitleColor
in interfaceChart
- Specified by:
chartTitleColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this Chart
-
chartTitleFont
Description copied from interface:Chart
Sets the font of this Chart's title.- Specified by:
chartTitleFont
in interfaceChart
- Specified by:
chartTitleFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Chart
-
chartTitleFont
Description copied from interface:Chart
Sets the font of this Chart's title.- Specified by:
chartTitleFont
in interfaceChart
- Specified by:
chartTitleFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Chart
-
colSpan
Description copied from interface:Chart
Sets the size of this Chart within the grid of the figure. -
errorBarX
public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarX(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
public FigureImpl errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public <T3 extends Number> FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public <T3 extends Number> FigureImpl errorBarX(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public <T3 extends Number> FigureImpl errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public <T3 extends Number> FigureImpl errorBarX(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public FigureImpl errorBarX(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction. -
errorBarX
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarX(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-values- Returns:
- dataset created by the plot
-
errorBarX
public FigureImpl errorBarX(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable data- Returns:
- dataset created for plot
-
errorBarX
public FigureImpl errorBarX(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y)Description copied from interface:Axes
Creates an XY plot with error bars in the x direction.- Specified by:
errorBarX
in interfaceAxes
- Specified by:
errorBarX
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable data- Returns:
- dataset created for plot
-
errorBarXBy
public FigureImpl errorBarXBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String... byColumns)Description copied from interface:Axes
Creates an errorBarX plot per distinct grouping value specified inbyColumns
.- Specified by:
errorBarXBy
in interfaceAxes
- Specified by:
errorBarXBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable databyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarXBy
public FigureImpl errorBarXBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String... byColumns)Description copied from interface:Axes
Creates an errorBarX plot per distinct grouping value specified inbyColumns
.- Specified by:
errorBarXBy
in interfaceAxes
- Specified by:
errorBarXBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarXY
public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number> FigureImpl errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarXY(Comparable seriesName, T0[] x, T1[] xLow, T2[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, double[] y, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, double[] x, double[] xLow, double[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, float[] y, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, float[] x, float[] xLow, float[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, int[] y, int[] yLow, int[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, int[] x, int[] xLow, int[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, long[] y, long[] yLow, long[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, long[] x, long[] xLow, long[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T3 extends Number, T4 extends Number, T5 extends Number> FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, double[] y, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, float[] y, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, int[] y, int[] yLow, int[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, long[] y, long[] yLow, long[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, short[] y, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T3 extends Number, T4 extends Number, T5 extends Number> FigureImpl errorBarXY(Comparable seriesName, DBDateTime[] x, DBDateTime[] xLow, DBDateTime[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T3 extends Number, T4 extends Number, T5 extends Number> FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, T3[] y, T4[] yLow, T5[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, double[] y, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, float[] y, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, int[] y, int[] yLow, int[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, long[] y, long[] yLow, long[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, short[] y, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T3 extends Number, T4 extends Number, T5 extends Number> FigureImpl errorBarXY(Comparable seriesName, Date[] x, Date[] xLow, Date[] xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, short[] x, short[] xLow, short[] xHigh, short[] y, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T0 extends Number, T1 extends Number, T2 extends Number> FigureImpl errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number, T5 extends Number> FigureImpl errorBarXY(Comparable seriesName, List<T0> x, List<T1> xLow, List<T2> xHigh, List<T3> y, List<T4> yLow, List<T5> yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data typeT4
- data typeT5
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesxLow
- low value in x dimensionxHigh
- high value in x dimensiony
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarXY
public FigureImpl errorBarXY(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in both the x and y directions.- Specified by:
errorBarXY
in interfaceAxes
- Specified by:
errorBarXY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarXYBy
public FigureImpl errorBarXYBy(Comparable seriesName, SelectableDataSet sds, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)Description copied from interface:Axes
Creates an errorBar plot per distinct grouping value specified inbyColumns
.- Specified by:
errorBarXYBy
in interfaceAxes
- Specified by:
errorBarXYBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable dataxLow
- column insds
that holds the low value in the x dimensionxHigh
- column insds
that holds the high value in the x dimensiony
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimensionbyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarXYBy
public FigureImpl errorBarXYBy(Comparable seriesName, Table t, String x, String xLow, String xHigh, String y, String yLow, String yHigh, String... byColumns)Description copied from interface:Axes
Creates an errorBar plot per distinct grouping value specified inbyColumns
.- Specified by:
errorBarXYBy
in interfaceAxes
- Specified by:
errorBarXYBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable dataxLow
- column int
that holds the low value in the x dimensionxHigh
- column int
that holds the high value in the x dimensiony
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimensionbyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarY
public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarY(Comparable seriesName, T0[] x, T1[] y, T2[] yLow, T3[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
public <T0 extends Number> FigureImpl errorBarY(Comparable seriesName, T0[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public <T0 extends Number> FigureImpl errorBarY(Comparable seriesName, T0[] x, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, double[] x, double[] y, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, double[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, double[] x, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, float[] x, float[] y, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, float[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, int[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, long[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public <T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, T1[] y, T2[] yLow, T3[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
public FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, double[] y, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, float[] y, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, int[] y, int[] yLow, int[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, long[] y, long[] yLow, long[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, short[] y, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public <T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarY(Comparable seriesName, DBDateTime[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
public <T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarY(Comparable seriesName, Date[] x, T1[] y, T2[] yLow, T3[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
public FigureImpl errorBarY(Comparable seriesName, Date[] x, double[] y, double[] yLow, double[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, Date[] x, float[] y, float[] yLow, float[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, Date[] x, short[] y, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public <T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarY(Comparable seriesName, Date[] x, List<T1> y, List<T2> yLow, List<T3> yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Type Parameters:
T1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
public FigureImpl errorBarY(Comparable seriesName, short[] x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public FigureImpl errorBarY(Comparable seriesName, short[] x, short[] y, short[] yLow, short[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public <T0 extends Number> FigureImpl errorBarY(Comparable seriesName, List<T0> x, DBDateTime[] y, DBDateTime[] yLow, DBDateTime[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public <T0 extends Number> FigureImpl errorBarY(Comparable seriesName, List<T0> x, Date[] y, Date[] yLow, Date[] yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction. -
errorBarY
public <T0 extends Number, T1 extends Number, T2 extends Number, T3 extends Number> FigureImpl errorBarY(Comparable seriesName, List<T0> x, List<T1> y, List<T2> yLow, List<T3> yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Type Parameters:
T0
- data typeT1
- data typeT2
- data typeT3
- data type- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valuesyLow
- low value in y dimensionyHigh
- high value in y dimension- Returns:
- dataset created by the plot
-
errorBarY
public FigureImpl errorBarY(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarY
public FigureImpl errorBarY(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh)Description copied from interface:Axes
Creates an XY plot with error bars in the y direction.- Specified by:
errorBarY
in interfaceAxes
- Specified by:
errorBarY
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable datay
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimension- Returns:
- dataset created for plot
-
errorBarYBy
public FigureImpl errorBarYBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String yLow, String yHigh, String... byColumns)Description copied from interface:Axes
Creates a errorBarY plot per distinct grouping value specified inbyColumns
.- Specified by:
errorBarYBy
in interfaceAxes
- Specified by:
errorBarYBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable dataset (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable datayLow
- column insds
that holds the low value in the y dimensionyHigh
- column insds
that holds the high value in the y dimensionbyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
errorBarYBy
public FigureImpl errorBarYBy(Comparable seriesName, Table t, String x, String y, String yLow, String yHigh, String... byColumns)Description copied from interface:Axes
Creates a errorBarY plot per distinct grouping value specified inbyColumns
.- Specified by:
errorBarYBy
in interfaceAxes
- Specified by:
errorBarYBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable datay
- column int
that holds the y-variable datayLow
- column int
that holds the low value in the y dimensionyHigh
- column int
that holds the high value in the y dimensionbyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
figureRemoveSeries
Description copied from interface:BaseFigure
Removes all series withnames
from this Figure.- Specified by:
figureRemoveSeries
in interfaceBaseFigure
- Specified by:
figureRemoveSeries
in interfaceFigure
- Parameters:
names
- series names- Returns:
- this Figure
-
figureTitle
Description copied from interface:BaseFigure
Sets the title of this Figure- Specified by:
figureTitle
in interfaceBaseFigure
- Specified by:
figureTitle
in interfaceFigure
- Parameters:
title
- title- Returns:
- this Figure
-
figureTitleColor
Description copied from interface:BaseFigure
Sets the color of this Figure's title- Specified by:
figureTitleColor
in interfaceBaseFigure
- Specified by:
figureTitleColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this Figure
-
figureTitleColor
Description copied from interface:BaseFigure
Sets the color of this Figure's title- Specified by:
figureTitleColor
in interfaceBaseFigure
- Specified by:
figureTitleColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this Figure
-
figureTitleFont
Description copied from interface:BaseFigure
Sets the font of this Figure's title- Specified by:
figureTitleFont
in interfaceBaseFigure
- Specified by:
figureTitleFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Figure
-
figureTitleFont
Description copied from interface:BaseFigure
Sets the font of this Figure's title- Specified by:
figureTitleFont
in interfaceBaseFigure
- Specified by:
figureTitleFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Figure
-
gridLinesVisible
Description copied from interface:Chart
Sets whether the Chart has grid lines.- Specified by:
gridLinesVisible
in interfaceChart
- Specified by:
gridLinesVisible
in interfaceFigure
- Parameters:
visible
- whether the Chart's grid lines are drawn- Returns:
- this Chart
-
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
public FigureImpl histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, int nbins)Description copied from interface:Axes
Creates a histogram.- Specified by:
histPlot
in interfaceAxes
- Specified by:
histPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)columnName
- column insds
nbins
- number of bins in the resulting histogram- Returns:
- dataset created for plot
-
histPlot
Description copied from interface:Axes
Creates a histogram. -
histPlot
public <T0 extends Number> FigureImpl histPlot(Comparable seriesName, T0[] x, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram.- Specified by:
histPlot
in interfaceAxes
- Specified by:
histPlot
in interfaceFigure
- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
public FigureImpl histPlot(Comparable seriesName, double[] x, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram. -
histPlot
public FigureImpl histPlot(Comparable seriesName, float[] x, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram. -
histPlot
public FigureImpl histPlot(Comparable seriesName, int[] x, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram. -
histPlot
public FigureImpl histPlot(Comparable seriesName, long[] x, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram. -
histPlot
public FigureImpl histPlot(Comparable seriesName, short[] x, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram. -
histPlot
public <T0 extends Number> FigureImpl histPlot(Comparable seriesName, List<T0> x, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram.- Specified by:
histPlot
in interfaceAxes
- Specified by:
histPlot
in interfaceFigure
- Type Parameters:
T0
- data type- Parameters:
seriesName
- name of the created datasetx
- datarangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins- Returns:
- dataset created by the plot
-
histPlot
public FigureImpl histPlot(Comparable seriesName, SelectableDataSet sds, String columnName, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram.- Specified by:
histPlot
in interfaceAxes
- Specified by:
histPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)columnName
- column insds
rangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins in the resulting histogram- Returns:
- dataset created for plot
-
histPlot
public FigureImpl histPlot(Comparable seriesName, Table t, String columnName, double rangeMin, double rangeMax, int nbins)Description copied from interface:Axes
Creates a histogram.- Specified by:
histPlot
in interfaceAxes
- Specified by:
histPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablecolumnName
- column int
rangeMin
- minimum of the rangerangeMax
- maximum of the rangenbins
- number of bins in the resulting histogram- Returns:
- dataset created for plot
-
invert
Description copied from interface:Axis
Inverts this Axis so that larger values are closer to the origin. -
invert
Description copied from interface:Axis
Inverts this Axis so that larger values are closer to the origin. -
legendColor
Description copied from interface:Chart
Sets the color of the text inside the Chart's legend.- Specified by:
legendColor
in interfaceChart
- Specified by:
legendColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this Chart
-
legendColor
Description copied from interface:Chart
Sets the color of the text inside the Chart's legend.- Specified by:
legendColor
in interfaceChart
- Specified by:
legendColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this Chart
-
legendFont
Description copied from interface:Chart
Sets the font of this Chart's legend.- Specified by:
legendFont
in interfaceChart
- Specified by:
legendFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Chart
-
legendFont
Description copied from interface:Chart
Sets the font of this Chart's legend.- Specified by:
legendFont
in interfaceChart
- Specified by:
legendFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Chart
-
legendVisible
Description copied from interface:Chart
Sets whether the Chart's legend is shown or hidden.- Specified by:
legendVisible
in interfaceChart
- Specified by:
legendVisible
in interfaceFigure
- Parameters:
visible
- whether the Chart's legend is shown or hidden- Returns:
- this Chart
-
log
Description copied from interface:Axis
Sets the AxisTransform as log base 10. -
max
Description copied from interface:Axis
Sets the maximum range of this Axis. -
max
Description copied from interface:Axis
Sets the maximum range of this Axis. -
maxRowsInTitle
Description copied from interface:Chart
Sets the maximum row values that will be shown in title.If total rows <
maxRowsCount
, then all the values will be shown separated by comma, otherwise justmaxRowsCount
values will be shown along with ellipsis.if
maxRowsCount
is < 0, all values will be shown.if
maxRowsCount
is 0, then just first value will be shown without ellipsis.The default is 0.
- Specified by:
maxRowsInTitle
in interfaceChart
- Specified by:
maxRowsInTitle
in interfaceFigure
- Parameters:
maxRowsCount
- maximum number of row values to show in chart title- Returns:
- this Chart
-
min
Description copied from interface:Axis
Sets the minimum range of this Axis. -
min
Description copied from interface:Axis
Sets the minimum range of this Axis. -
minorTicks
Description copied from interface:Axis
Sets the number of minor ticks between consecutive major ticks. These minor ticks are equally spaced.- Specified by:
minorTicks
in interfaceAxis
- Specified by:
minorTicks
in interfaceFigure
- Parameters:
count
- number of minor ticks between consecutive major ticks.- Returns:
- this Axis
-
minorTicksVisible
Description copied from interface:Axis
Sets whether minor ticks are drawn on this Axis.- Specified by:
minorTicksVisible
in interfaceAxis
- Specified by:
minorTicksVisible
in interfaceFigure
- Parameters:
visible
- whether minor ticks are drawn on this Axis- Returns:
- this Axis
-
newAxes
Description copied from interface:Chart
Creates newAxes
on this Chart. -
newAxes
Description copied from interface:Chart
Creates newAxes
on this Chart. -
newAxes
Description copied from interface:Chart
Creates newAxes
on this Chart. -
newAxes
Description copied from interface:Chart
Creates newAxes
on this Chart. -
newChart
Description copied from interface:BaseFigure
Adds a newChart
to this figure.- Specified by:
newChart
in interfaceBaseFigure
- Specified by:
newChart
in interfaceFigure
- Returns:
- the new
Chart
. TheChart
is placed in the next available grid space, starting at the upper left hand corner of the grid, going left to right, top to bottom. If no available space is found in the grid:- if this Figure was created with no specified grid size, then the Figure will resize itself to add the new
Chart
; - if not, a RuntimeException will be thrown.
- if this Figure was created with no specified grid size, then the Figure will resize itself to add the new
-
newChart
Description copied from interface:BaseFigure
Adds a newChart
to this figure.- Specified by:
newChart
in interfaceBaseFigure
- Specified by:
newChart
in interfaceFigure
- Parameters:
index
- index from the Figure's grid to remove. The index starts at 0 in the upper left hand corner of the grid and increases going left to right, top to bottom. E.g. for a 2x2 Figure, the indices would be [0, 1] [2, 3].- Returns:
- the new
Chart
. TheChart
is placed at the grid space indicated by theindex
.
-
newChart
Description copied from interface:BaseFigure
Adds a newChart
to this figure.- Specified by:
newChart
in interfaceBaseFigure
- Specified by:
newChart
in interfaceFigure
- Parameters:
rowNum
- row index in this Figure's grid. The row index starts at 0.colNum
- column index in this Figure's grid. The column index starts at 0.- Returns:
- the new
Chart
. TheChart
is placed at the grid space [rowNum
,colNum
.
-
ohlcPlot
public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> FigureImpl ohlcPlot(Comparable seriesName, DBDateTime[] time, T1[] open, T2[] high, T3[] low, T4[] close)Description copied from interface:Axes
Creates an open-high-low-close plot.- Specified by:
ohlcPlot
in interfaceAxes
- Specified by:
ohlcPlot
in interfaceFigure
- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, DBDateTime[] time, double[] open, double[] high, double[] low, double[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, DBDateTime[] time, float[] open, float[] high, float[] low, float[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, DBDateTime[] time, int[] open, int[] high, int[] low, int[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, DBDateTime[] time, long[] open, long[] high, long[] low, long[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, DBDateTime[] time, short[] open, short[] high, short[] low, short[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> FigureImpl ohlcPlot(Comparable seriesName, DBDateTime[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)Description copied from interface:Axes
Creates an open-high-low-close plot.- Specified by:
ohlcPlot
in interfaceAxes
- Specified by:
ohlcPlot
in interfaceFigure
- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> FigureImpl ohlcPlot(Comparable seriesName, Date[] time, T1[] open, T2[] high, T3[] low, T4[] close)Description copied from interface:Axes
Creates an open-high-low-close plot.- Specified by:
ohlcPlot
in interfaceAxes
- Specified by:
ohlcPlot
in interfaceFigure
- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, Date[] time, double[] open, double[] high, double[] low, double[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, Date[] time, float[] open, float[] high, float[] low, float[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, Date[] time, int[] open, int[] high, int[] low, int[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, Date[] time, long[] open, long[] high, long[] low, long[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, Date[] time, short[] open, short[] high, short[] low, short[] close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public <T1 extends Number, T2 extends Number, T3 extends Number, T4 extends Number> FigureImpl ohlcPlot(Comparable seriesName, Date[] time, List<T1> open, List<T2> high, List<T3> low, List<T4> close)Description copied from interface:Axes
Creates an open-high-low-close plot.- Specified by:
ohlcPlot
in interfaceAxes
- Specified by:
ohlcPlot
in interfaceFigure
- Type Parameters:
T1
- open data typeT2
- high data typeT3
- low data typeT4
- close data type- Parameters:
seriesName
- name of the created datasettime
- time dataopen
- open datahigh
- high datalow
- low dataclose
- close data- Returns:
- dataset created by the plot
-
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, IndexableNumericData time, IndexableNumericData open, IndexableNumericData high, IndexableNumericData low, IndexableNumericData close)Description copied from interface:Axes
Creates an open-high-low-close plot. -
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol)Description copied from interface:Axes
Creates an open-high-low-close plot.- Specified by:
ohlcPlot
in interfaceAxes
- Specified by:
ohlcPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)timeCol
- column insds
that holds the time dataopenCol
- column insds
that holds the open datahighCol
- column insds
that holds the high datalowCol
- column insds
that holds the low datacloseCol
- column insds
that holds the close data- Returns:
- dataset created for plot
-
ohlcPlot
public FigureImpl ohlcPlot(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol)Description copied from interface:Axes
Creates an open-high-low-close plot.- Specified by:
ohlcPlot
in interfaceAxes
- Specified by:
ohlcPlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tabletimeCol
- column int
that holds the time dataopenCol
- column int
that holds the open datahighCol
- column int
that holds the high datalowCol
- column int
that holds the low datacloseCol
- column int
that holds the close data- Returns:
- dataset created for plot
-
ohlcPlotBy
public FigureImpl ohlcPlotBy(Comparable seriesName, SelectableDataSet sds, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)Description copied from interface:Axes
Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.- Specified by:
ohlcPlotBy
in interfaceAxes
- Specified by:
ohlcPlotBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)timeCol
- column insds
that holds the time dataopenCol
- column insds
that holds the open datahighCol
- column insds
that holds the high datalowCol
- column insds
that holds the low datacloseCol
- column insds
that holds the close databyColumns
- column(s) insds
that holds the grouping data- Returns:
- dataset created for plot
-
ohlcPlotBy
public FigureImpl ohlcPlotBy(Comparable seriesName, Table t, String timeCol, String openCol, String highCol, String lowCol, String closeCol, String... byColumns)Description copied from interface:Axes
Creates an open-high-low-close plot per distinct grouping value specified inbyColumns
.- Specified by:
ohlcPlotBy
in interfaceAxes
- Specified by:
ohlcPlotBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tabletimeCol
- column int
that holds the time dataopenCol
- column int
that holds the open datahighCol
- column int
that holds the high datalowCol
- column int
that holds the low datacloseCol
- column int
that holds the close databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
piePlot
public <T0 extends Comparable, T1 extends Number> FigureImpl piePlot(Comparable seriesName, T0[] categories, T1[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, T0[] categories, double[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, T0[] categories, float[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, T0[] categories, int[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, T0[] categories, long[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, T0[] categories, short[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable, T1 extends Number> FigureImpl piePlot(Comparable seriesName, T0[] categories, List<T1> values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T1 extends Comparable> FigureImpl piePlot(Comparable seriesName, IndexableData<T1> categories, IndexableNumericData values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable, T1 extends Number> FigureImpl piePlot(Comparable seriesName, List<T0> categories, T1[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, List<T0> categories, double[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, List<T0> categories, float[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, List<T0> categories, int[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, List<T0> categories, long[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable> FigureImpl piePlot(Comparable seriesName, List<T0> categories, short[] values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public <T0 extends Comparable, T1 extends Number> FigureImpl piePlot(Comparable seriesName, List<T0> categories, List<T1> values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
piePlot
public FigureImpl piePlot(Comparable seriesName, SelectableDataSet sds, String categories, String values)Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates.- Specified by:
piePlot
in interfaceAxes
- Specified by:
piePlot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)categories
- column insds
with categorical datavalues
- column insds
with numerical data- Returns:
- dataset created for plot
-
piePlot
Description copied from interface:Axes
Creates a pie plot. Categorical data must not have duplicates. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
public <T0 extends Number, T1 extends Number> FigureImpl plot(Comparable seriesName, T0[] x, T1[] y)Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
public <T0 extends Number, T1 extends Number> FigureImpl plot(Comparable seriesName, T0[] x, List<T1> y)Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
public <T0 extends Number, T1 extends Number> FigureImpl plot(Comparable seriesName, List<T0> x, T1[] y)Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
public <T0 extends Number, T1 extends Number> FigureImpl plot(Comparable seriesName, List<T0> x, List<T1> y)Description copied from interface:Axes
Creates an XY plot. -
plot
Description copied from interface:Axes
Creates an XY plot.- Specified by:
plot
in interfaceAxes
- Specified by:
plot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable data- Returns:
- dataset created for plot
-
plot
Description copied from interface:Axes
Creates an XY plot. -
plot
public FigureImpl plot(Comparable seriesName, IndexableNumericData x, IndexableNumericData y, boolean hasXTimeAxis, boolean hasYTimeAxis)Description copied from interface:Axes
Creates an XY plot.- Specified by:
plot
in interfaceAxes
- Specified by:
plot
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetx
- x-valuesy
- y-valueshasXTimeAxis
- whether to treat the x-values as time datahasYTimeAxis
- whether to treat the y-values as time data- Returns:
- dataset created for plot
-
plotBy
public FigureImpl plotBy(Comparable seriesName, SelectableDataSet sds, String x, String y, String... byColumns)Description copied from interface:Axes
Creates an XY plot per distinct grouping value specified inbyColumns
.- Specified by:
plotBy
in interfaceAxes
- Specified by:
plotBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasetsds
- selectable data set (e.g. OneClick filterable table)x
- column insds
that holds the x-variable datay
- column insds
that holds the y-variable databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
plotBy
Description copied from interface:Axes
Creates an XY plot per distinct grouping value specified inbyColumns
.- Specified by:
plotBy
in interfaceAxes
- Specified by:
plotBy
in interfaceFigure
- Parameters:
seriesName
- name of the created datasett
- tablex
- column int
that holds the x-variable datay
- column int
that holds the y-variable databyColumns
- column(s) int
that holds the grouping data- Returns:
- dataset created for plot
-
plotOrientation
Description copied from interface:Chart
Sets the orientation of plots in this Chart.- Specified by:
plotOrientation
in interfaceChart
- Specified by:
plotOrientation
in interfaceFigure
- Parameters:
orientation
- plot orientation- Returns:
- this Chart
-
plotStyle
Description copied from interface:Axes
Sets thePlotStyle
of this Axes. -
plotStyle
Description copied from interface:Axes
Sets thePlotStyle
of this Axes. -
range
Description copied from interface:Axis
Sets the range of this Axis to [min
,max
] inclusive. -
removeChart
Description copied from interface:BaseFigure
Removes a chart from the Figure's grid.- Specified by:
removeChart
in interfaceBaseFigure
- Specified by:
removeChart
in interfaceFigure
- Parameters:
index
- index from the Figure's grid to remove. The index starts at 0 in the upper left hand corner of the grid and increases going left to right, top to bottom. E.g. for a 2x2 Figure, the indices would be [0, 1] [2, 3].- Returns:
- this Figure with the chart removed.
-
removeChart
Description copied from interface:BaseFigure
Removes a chart from the Figure's grid.- Specified by:
removeChart
in interfaceBaseFigure
- Specified by:
removeChart
in interfaceFigure
- Parameters:
rowNum
- row index in this Figure's grid. The row index starts at 0.colNum
- column index in this Figure's grid. The column index starts at 0.- Returns:
- this Figure with the chart removed.
-
rowSpan
Description copied from interface:Chart
Sets the size of this Chart within the grid of the figure. -
series
Description copied from interface:Axes
Gets a data series. -
series
Description copied from interface:Axes
Gets a data series. -
span
Description copied from interface:Chart
Sets the size of this Chart within the grid of the figure. -
theme
Description copied from interface:BaseFigure
Sets theTheme
of this Figure- Specified by:
theme
in interfaceBaseFigure
- Specified by:
theme
in interfaceFigure
- Parameters:
theme
- theme name- Returns:
- this Figure
-
theme
Description copied from interface:BaseFigure
Sets theTheme
of this Figure- Specified by:
theme
in interfaceBaseFigure
- Specified by:
theme
in interfaceFigure
- Parameters:
theme
- theme- Returns:
- this Figure
-
tickLabelAngle
Description copied from interface:Axis
Sets the angle the tick labels of this Axis are drawn at.- Specified by:
tickLabelAngle
in interfaceAxis
- Specified by:
tickLabelAngle
in interfaceFigure
- Parameters:
angle
- angle in degrees- Returns:
- this Axis
-
ticks
Description copied from interface:Axis
Sets the tick locations. -
ticks
Description copied from interface:Axis
Sets the tick locations. -
ticksFont
Description copied from interface:Axis
Sets the font for this Axis's ticks. -
ticksFont
Description copied from interface:Axis
Sets the font for this Axis's ticks.- Specified by:
ticksFont
in interfaceAxis
- Specified by:
ticksFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
ticksVisible
Description copied from interface:Axis
Sets whether ticks are drawn on this Axis.- Specified by:
ticksVisible
in interfaceAxis
- Specified by:
ticksVisible
in interfaceFigure
- Parameters:
visible
- whether ticks are drawn on this Axis- Returns:
- this Axis
-
transform
Description copied from interface:Axis
Sets theAxisTransform
for this Axis. -
twin
Description copied from interface:Axes
-
twin
Description copied from interface:Axes
-
twin
Description copied from interface:Axes
Creates a new Axes instance which shares the sameAxis
objects as this Axes. The resultant Axes has the same range, ticks, etc. as this Axes (as these are fields of theAxis
) but may have, for example, a different PlotStyle.- Specified by:
twin
in interfaceAxes
- Specified by:
twin
in interfaceFigure
- Parameters:
dim
-Axis
dimension to share. The x-axis is dimension 0, y-axis is dimension 1, and the z-axis is dimension 2.- Returns:
- the new Axes instance. The axes name will be equal to the string representation of the axes id.
-
twin
Description copied from interface:Axes
-
twinX
Description copied from interface:Axes
-
twinX
Description copied from interface:Axes
-
twinY
Description copied from interface:Axes
-
twinY
Description copied from interface:Axes
-
updateInterval
Description copied from interface:BaseFigure
Sets the update interval of this Figure. The plot will be redrawn at this update interval.- Specified by:
updateInterval
in interfaceBaseFigure
- Specified by:
updateInterval
in interfaceFigure
- Parameters:
updateIntervalMillis
- update interval, in milliseconds- Returns:
- this Figure
-
xAxis
Description copied from interface:Axes
Gets theAxis
representing the x-axis -
xBusinessTime
Description copied from interface:Axes
- Specified by:
xBusinessTime
in interfaceAxes
- Specified by:
xBusinessTime
in interfaceFigure
- Returns:
- this Axes using the default
BusinessCalendar
for the x-Axis
.
-
xBusinessTime
Description copied from interface:Axes
- Specified by:
xBusinessTime
in interfaceAxes
- Specified by:
xBusinessTime
in interfaceFigure
- Parameters:
calendar
- business calendar for theAxisTransformBusinessCalendar
- Returns:
- this Axes using the
calendar
for the x-Axis
business calendar.
-
xBusinessTime
Description copied from interface:Axes
- Specified by:
xBusinessTime
in interfaceAxes
- Specified by:
xBusinessTime
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing the business calendar.valueColumn
- name of a column containing String values, where each value is the name of aBusinessCalendar
.- Returns:
- this Axes using the business calendar from row 0 of the filtered
sds
for the x-Axis
business calendar. If no value is found, no transform will be applied.
-
xColor
Description copied from interface:Axes
Sets the color of the x-Axis
-
xColor
Description copied from interface:Axes
Sets the color of the x-Axis
-
xFormat
Description copied from interface:Axes
Sets theAxisFormat
of the x-Axis
-
xFormatPattern
Description copied from interface:Axes
Sets the format pattern of the x-Axis
- Specified by:
xFormatPattern
in interfaceAxes
- Specified by:
xFormatPattern
in interfaceFigure
- Parameters:
pattern
- pattern- Returns:
- this Axes
-
xGridLinesVisible
Description copied from interface:Chart
Sets whether the Chart has grid lines in the x direction.- Specified by:
xGridLinesVisible
in interfaceChart
- Specified by:
xGridLinesVisible
in interfaceFigure
- Parameters:
visible
- whether the Chart's x grid lines are drawn- Returns:
- this Chart
-
xInvert
Description copied from interface:Axes
Inverts the x-Axis
so that larger values are closer to the origin. -
xInvert
Description copied from interface:Axes
Inverts the x-Axis
so that larger values are closer to the origin. -
xLabel
Description copied from interface:Axes
Sets the label of the x-Axis
-
xLabelFont
Description copied from interface:Axes
Sets the font for the x-Axis
label.- Specified by:
xLabelFont
in interfaceAxes
- Specified by:
xLabelFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Axis
-
xLabelFont
Description copied from interface:Axes
Sets the font for the x-Axis
label.- Specified by:
xLabelFont
in interfaceAxes
- Specified by:
xLabelFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
xLog
Description copied from interface:Axes
Sets theAxisTransform
of the x-Axis
to log base 10 -
xMax
Description copied from interface:Axes
Sets the maximum of the x-Axis
. -
xMax
Description copied from interface:Axes
Sets the maximum of the x-Axis
. -
xMin
Description copied from interface:Axes
Sets the minimum of the x-Axis
. -
xMin
Description copied from interface:Axes
Sets the minimum of the x-Axis
. -
xMinorTicks
Description copied from interface:Axes
Sets the number of minor ticks between consecutive major ticks in the x-Axis
. These minor ticks are equally spaced.- Specified by:
xMinorTicks
in interfaceAxes
- Specified by:
xMinorTicks
in interfaceFigure
- Parameters:
count
- number of minor ticks between consecutive major ticks.- Returns:
- this Axes
-
xMinorTicksVisible
Description copied from interface:Axes
Sets whether the x-Axis
minor ticks are visible.- Specified by:
xMinorTicksVisible
in interfaceAxes
- Specified by:
xMinorTicksVisible
in interfaceFigure
- Parameters:
visible
- whether the minor ticks are visible- Returns:
- this Axes
-
xRange
Description copied from interface:Axes
Sets the range of the x-Axis
-
xTickLabelAngle
Description copied from interface:Axes
Sets the angle the tick labels the x-Axis
are drawn at.- Specified by:
xTickLabelAngle
in interfaceAxes
- Specified by:
xTickLabelAngle
in interfaceFigure
- Parameters:
angle
- angle in degrees- Returns:
- this Axes
-
xTicks
Description copied from interface:Axes
Sets the x-Axis
ticks. -
xTicks
Description copied from interface:Axes
Sets the x-Axis
ticks. -
xTicksFont
Description copied from interface:Axes
Sets the font for the x-Axis
ticks.- Specified by:
xTicksFont
in interfaceAxes
- Specified by:
xTicksFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Axis
-
xTicksFont
Description copied from interface:Axes
Sets the font for the x-Axis
ticks.- Specified by:
xTicksFont
in interfaceAxes
- Specified by:
xTicksFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
xTicksVisible
Description copied from interface:Axes
Sets whether the x-Axis
ticks are visible.- Specified by:
xTicksVisible
in interfaceAxes
- Specified by:
xTicksVisible
in interfaceFigure
- Parameters:
visible
- whether the ticks are visible- Returns:
- this Axes
-
xTransform
Description copied from interface:Axes
Sets theAxisTransform
of the x-Axis
- Specified by:
xTransform
in interfaceAxes
- Specified by:
xTransform
in interfaceFigure
- Parameters:
transform
- transform- Returns:
- this Axes
-
yAxis
Description copied from interface:Axes
Gets theAxis
representing the y-axis -
yBusinessTime
Description copied from interface:Axes
- Specified by:
yBusinessTime
in interfaceAxes
- Specified by:
yBusinessTime
in interfaceFigure
- Returns:
- this Axes using the default
BusinessCalendar
for the y-Axis
.
-
yBusinessTime
Description copied from interface:Axes
- Specified by:
yBusinessTime
in interfaceAxes
- Specified by:
yBusinessTime
in interfaceFigure
- Parameters:
calendar
- business calendar for theAxisTransformBusinessCalendar
- Returns:
- this Axes using the
calendar
for the y-Axis
business calendar.
-
yBusinessTime
Description copied from interface:Axes
- Specified by:
yBusinessTime
in interfaceAxes
- Specified by:
yBusinessTime
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing the business calendar.valueColumn
- name of a column containing String values, where each value is the name of aBusinessCalendar
.- Returns:
- this Axes using the business calendar from row 0 of the filtered
sds
for the y-Axis
business calendar. If no value is found, no transform will be applied.
-
yColor
Description copied from interface:Axes
Sets the color of the y-Axis
-
yColor
Description copied from interface:Axes
Sets the color of the y-Axis
-
yFormat
Description copied from interface:Axes
Sets theAxisFormat
of the y-Axis
-
yFormatPattern
Description copied from interface:Axes
Sets the format pattern of the y-Axis
- Specified by:
yFormatPattern
in interfaceAxes
- Specified by:
yFormatPattern
in interfaceFigure
- Parameters:
pattern
- pattern- Returns:
- this Axes
-
yGridLinesVisible
Description copied from interface:Chart
Sets whether the Chart has grid lines in the y direction- Specified by:
yGridLinesVisible
in interfaceChart
- Specified by:
yGridLinesVisible
in interfaceFigure
- Parameters:
visible
- whether the Chart's y grid lines are drawn- Returns:
- this Chart
-
yInvert
Description copied from interface:Axes
Inverts the y-Axis
so that larger values are closer to the origin. -
yInvert
Description copied from interface:Axes
Inverts the y-Axis
so that larger values are closer to the origin. -
yLabel
Description copied from interface:Axes
Sets the label of the y-Axis
-
yLabelFont
Description copied from interface:Axes
Sets the font for the y-Axis
label.- Specified by:
yLabelFont
in interfaceAxes
- Specified by:
yLabelFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Axis
-
yLabelFont
Description copied from interface:Axes
Sets the font for the y-Axis
label.- Specified by:
yLabelFont
in interfaceAxes
- Specified by:
yLabelFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
yLog
Description copied from interface:Axes
Sets theAxisTransform
of the y-Axis
to log base 10 -
yMax
Description copied from interface:Axes
Sets the maximum of the y-Axis
. -
yMax
Description copied from interface:Axes
Sets the maximum of the y-Axis
. -
yMin
Description copied from interface:Axes
Sets the minimum of the y-Axis
. -
yMin
Description copied from interface:Axes
Sets the minimum of the y-Axis
. -
yMinorTicks
Description copied from interface:Axes
Sets the number of minor ticks between consecutive major ticks in the y-Axis
. These minor ticks are equally spaced.- Specified by:
yMinorTicks
in interfaceAxes
- Specified by:
yMinorTicks
in interfaceFigure
- Parameters:
count
- number of minor ticks between consecutive major ticks.- Returns:
- this Axes
-
yMinorTicksVisible
Description copied from interface:Axes
Sets whether the y-Axis
minor ticks are visible.- Specified by:
yMinorTicksVisible
in interfaceAxes
- Specified by:
yMinorTicksVisible
in interfaceFigure
- Parameters:
visible
- whether the minor ticks are visible- Returns:
- this Axes
-
yRange
Description copied from interface:Axes
Sets the range of the y-Axis
-
yTickLabelAngle
Description copied from interface:Axes
Sets the angle the tick labels the y-Axis
are drawn at.- Specified by:
yTickLabelAngle
in interfaceAxes
- Specified by:
yTickLabelAngle
in interfaceFigure
- Parameters:
angle
- angle in degrees- Returns:
- this Axes
-
yTicks
Description copied from interface:Axes
Sets the y-Axis
ticks. -
yTicks
Description copied from interface:Axes
Sets the y-Axis
ticks. -
yTicksFont
Description copied from interface:Axes
Sets the font for the y-Axis
ticks.- Specified by:
yTicksFont
in interfaceAxes
- Specified by:
yTicksFont
in interfaceFigure
- Parameters:
font
- font- Returns:
- this Axis
-
yTicksFont
Description copied from interface:Axes
Sets the font for the y-Axis
ticks.- Specified by:
yTicksFont
in interfaceAxes
- Specified by:
yTicksFont
in interfaceFigure
- Parameters:
family
- font family; if null, set to Arialstyle
- font style; if null, set toFont.FontStyle
PLAINsize
- the point size of the Font- Returns:
- this Axis
-
yTicksVisible
Description copied from interface:Axes
Sets whether the y-Axis
ticks are visible.- Specified by:
yTicksVisible
in interfaceAxes
- Specified by:
yTicksVisible
in interfaceFigure
- Parameters:
visible
- whether the ticks are visible- Returns:
- this Axes
-
yTransform
Description copied from interface:Axes
Sets theAxisTransform
of the y-Axis
- Specified by:
yTransform
in interfaceAxes
- Specified by:
yTransform
in interfaceFigure
- Parameters:
transform
- transform- Returns:
- this Axes
-
errorBarColor
Description copied from interface:DataSeries
Sets the error barPaint
for this dataset.- Specified by:
errorBarColor
in interfaceCategoryDataSeries
- Specified by:
errorBarColor
in interfaceDataSeries
- Specified by:
errorBarColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this DataSeries
-
errorBarColor
- Specified by:
errorBarColor
in interfaceFigure
- Specified by:
errorBarColor
in interfaceMultiSeries
-
errorBarColor
Description copied from interface:DataSeries
Sets the error barPaint
for this dataset.- Specified by:
errorBarColor
in interfaceCategoryDataSeries
- Specified by:
errorBarColor
in interfaceDataSeries
- Specified by:
errorBarColor
in interfaceFigure
- Parameters:
color
- index of the color in the series color palette- Returns:
- this DataSeries
-
errorBarColor
- Specified by:
errorBarColor
in interfaceFigure
- Specified by:
errorBarColor
in interfaceMultiSeries
-
errorBarColor
Description copied from interface:DataSeries
Sets the error barPaint
for this dataset.- Specified by:
errorBarColor
in interfaceCategoryDataSeries
- Specified by:
errorBarColor
in interfaceDataSeries
- Specified by:
errorBarColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this DataSeries
-
errorBarColor
- Specified by:
errorBarColor
in interfaceFigure
- Specified by:
errorBarColor
in interfaceMultiSeries
-
funcNPoints
Description copied from interface:XYDataSeriesFunction
Sets the number of data points in this dataset.- Specified by:
funcNPoints
in interfaceFigure
- Specified by:
funcNPoints
in interfaceXYDataSeriesFunction
- Parameters:
npoints
- number of points- Returns:
- this data series with the specified number of points.
-
funcRange
Description copied from interface:XYDataSeriesFunction
Sets the data range for this series.- Specified by:
funcRange
in interfaceFigure
- Specified by:
funcRange
in interfaceXYDataSeriesFunction
- Parameters:
xmin
- range minimumxmax
- range maximum- Returns:
- this data series with the new range
-
funcRange
Description copied from interface:XYDataSeriesFunction
Sets the data range for this series.- Specified by:
funcRange
in interfaceFigure
- Specified by:
funcRange
in interfaceXYDataSeriesFunction
- Parameters:
xmin
- range minimumxmax
- range maximumnpoints
- number of data points- Returns:
- this data series with the new range
-
gradientVisible
Description copied from interface:DataSeries
Sets whether bar gradients are visible.- Specified by:
gradientVisible
in interfaceCategoryDataSeries
- Specified by:
gradientVisible
in interfaceDataSeries
- Specified by:
gradientVisible
in interfaceFigure
- Parameters:
visible
- bar gradient visibility- Returns:
- this data series.
-
gradientVisible
- Specified by:
gradientVisible
in interfaceFigure
- Specified by:
gradientVisible
in interfaceMultiSeries
-
group
Description copied from interface:CategoryDataSeries
Sets the group for this dataset.- Specified by:
group
in interfaceCategoryDataSeries
- Specified by:
group
in interfaceFigure
- Returns:
- this data series.
-
group
- Specified by:
group
in interfaceFigure
- Specified by:
group
in interfaceMultiSeries
-
lineColor
Description copied from interface:DataSeries
Defines the default line color.- Specified by:
lineColor
in interfaceCategoryDataSeries
- Specified by:
lineColor
in interfaceDataSeries
- Specified by:
lineColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
lineColor
- Specified by:
lineColor
in interfaceFigure
- Specified by:
lineColor
in interfaceMultiSeries
-
lineColor
Description copied from interface:DataSeries
Defines the default line color.- Specified by:
lineColor
in interfaceCategoryDataSeries
- Specified by:
lineColor
in interfaceDataSeries
- Specified by:
lineColor
in interfaceFigure
- Parameters:
color
- color palette index- Returns:
- this data series.
-
lineColor
- Specified by:
lineColor
in interfaceFigure
- Specified by:
lineColor
in interfaceMultiSeries
-
lineColor
Description copied from interface:DataSeries
Defines the default line color.- Specified by:
lineColor
in interfaceCategoryDataSeries
- Specified by:
lineColor
in interfaceDataSeries
- Specified by:
lineColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
lineColor
- Specified by:
lineColor
in interfaceFigure
- Specified by:
lineColor
in interfaceMultiSeries
-
lineStyle
Description copied from interface:DataSeries
Sets the line style.- Specified by:
lineStyle
in interfaceCategoryDataSeries
- Specified by:
lineStyle
in interfaceDataSeries
- Specified by:
lineStyle
in interfaceFigure
- Parameters:
style
- style- Returns:
- this data series.
-
lineStyle
- Specified by:
lineStyle
in interfaceFigure
- Specified by:
lineStyle
in interfaceMultiSeries
-
linesVisible
Description copied from interface:DataSeries
Sets whether lines are visible.- Specified by:
linesVisible
in interfaceCategoryDataSeries
- Specified by:
linesVisible
in interfaceDataSeries
- Specified by:
linesVisible
in interfaceFigure
- Parameters:
visible
- line visibility- Returns:
- this data series.
-
linesVisible
- Specified by:
linesVisible
in interfaceFigure
- Specified by:
linesVisible
in interfaceMultiSeries
-
piePercentLabelFormat
Description copied from interface:CategoryDataSeries
Sets the format of the percentage point label format in pie plots.- Specified by:
piePercentLabelFormat
in interfaceCategoryDataSeries
- Specified by:
piePercentLabelFormat
in interfaceFigure
- Parameters:
format
- format- Returns:
- this data series.
-
piePercentLabelFormat
- Specified by:
piePercentLabelFormat
in interfaceFigure
- Specified by:
piePercentLabelFormat
in interfaceMultiSeries
-
pointColor
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceXYDataSeries
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing colorscolumnName
- column insds
containing colors. The color data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)keyColumn
- column insds
, specifying category valuesvalueColumn
- column insds
, specifyingPaint
s or ints/Integers representing color palette values.- Returns:
- this CategoryDataSeries
-
pointColor
public FigureImpl pointColor(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceXYDataSeries
- Parameters:
t
- table containing colorscolumnName
- column int
containing colors. The color data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
t
- tablekeyColumn
- column int
, specifying category valuesvalueColumn
- column int
, specifyingPaint
s or ints/Integers representing color palette values.- Returns:
- this CategoryDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:DataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceXYDataSeries
- Parameters:
colors
- colors. The color for data point i comes from index i.- Returns:
- this XYDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:DataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceXYDataSeries
- Parameters:
colors
- color palette indices. The color for data point i comes from index i. A value of 3 corresponds to the 3rd color from the color pallette.- Returns:
- this XYDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
category
- data pointcolor
- color- Returns:
- this CategoryDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
category
- data pointcolor
- index of the color in the series color palette- Returns:
- this CategoryDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
category
- data pointcolor
- color- Returns:
- this CategoryDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceXYDataSeries
- Parameters:
colors
- color palette indices. The color for data point i comes from index i. A value of 3 corresponds to the 3rd color from the color pallette.- Returns:
- this XYDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:DataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceDataSeries
- Specified by:
pointColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceXYDataSeries
- Parameters:
colors
- color names. The color for data point i comes from index i.- Returns:
- this XYDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColorInteger
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColorInteger
in interfaceFigure
- Specified by:
pointColorInteger
in interfaceXYDataSeries
- Parameters:
colors
- colors. The color for data point i comes from index i.- Returns:
- this XYDataSeries
-
pointColorInteger
- Specified by:
pointColorInteger
in interfaceFigure
- Specified by:
pointColorInteger
in interfaceMultiSeries
-
pointLabel
Description copied from interface:XYDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceXYDataSeries
- Parameters:
labels
- labels- Returns:
- this XYDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:XYDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceXYDataSeries
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing labelscolumnName
- column insds
containing labels. The color data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:CategoryDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceCategoryDataSeries
- Specified by:
pointLabel
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)keyColumn
- column insds
, specifying category valuesvalueColumn
- column insds
, specifying labels- Returns:
- this CategoryDataSeries
-
pointLabel
public FigureImpl pointLabel(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:XYDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceXYDataSeries
- Parameters:
t
- table containing labelscolumnName
- column int
containing labels. The label data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:CategoryDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceCategoryDataSeries
- Specified by:
pointLabel
in interfaceFigure
- Parameters:
t
- tablekeyColumn
- column int
, specifying category valuesvalueColumn
- column int
, specifying labels- Returns:
- this CategoryDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:CategoryDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceCategoryDataSeries
- Specified by:
pointLabel
in interfaceFigure
- Parameters:
category
- category valuelabel
- label- Returns:
- this CategoryDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:DataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceDataSeries
- Specified by:
pointLabel
in interfaceFigure
- Parameters:
label
- label- Returns:
- this XYDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:XYDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceXYDataSeries
- Parameters:
labels
- labels- Returns:
- this XYDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabelFormat
Description copied from interface:DataSeries
Sets the point label format.Use {0} where the data series name should be inserted, {1} for the x-value and {2} y-value e.g. "{0}: ({1}, {2})" will display as Series1: (2.0, 5.5).
- Specified by:
pointLabelFormat
in interfaceDataSeries
- Specified by:
pointLabelFormat
in interfaceFigure
- Parameters:
format
- format- Returns:
- this data series.
-
pointLabelFormat
- Specified by:
pointLabelFormat
in interfaceFigure
- Specified by:
pointLabelFormat
in interfaceMultiSeries
-
pointShape
Description copied from interface:XYDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceXYDataSeries
- Parameters:
shapes
- shapes- Returns:
- this XYDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:XYDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceXYDataSeries
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing shapescolumnName
- column insds
containing shapes. The color data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:CategoryDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceCategoryDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)keyColumn
- column insds
, specifying category valuesvalueColumn
- column insds
, specifying shapes- Returns:
- this CategoryDataSeries
-
pointShape
public FigureImpl pointShape(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:XYDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceXYDataSeries
- Parameters:
t
- table containing shapescolumnName
- column int
containing shapes. The shape data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:CategoryDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceCategoryDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
t
- tablekeyColumn
- column int
, specifying category valuesvalueColumn
- column int
, specifying shapes- Returns:
- this CategoryDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:DataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
shape
- shape- Returns:
- this DataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:XYDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceXYDataSeries
- Parameters:
shapes
- shapes- Returns:
- this XYDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:CategoryDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceCategoryDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
shapes
- closure used to determine point shapes- Returns:
- this CategoryDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:CategoryDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceCategoryDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
category
- category valueshape
- shape- Returns:
- this CategoryDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:CategoryDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceCategoryDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
category
- category valueshape
- shape- Returns:
- this CategoryDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:DataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
shape
- shape- Returns:
- this DataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:XYDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceXYDataSeries
- Parameters:
shapes
- shapes- Returns:
- this XYDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointShape
Description copied from interface:CategoryDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceCategoryDataSeries
- Specified by:
pointShape
in interfaceFigure
- Parameters:
shapes
- function used to determine point shapes- Returns:
- this CategoryDataSeries
-
pointShape
- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointSize
Description copied from interface:XYDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceXYDataSeries
- Parameters:
factors
- factors to multiply the default size (1) by- Returns:
- this XYDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:XYDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceXYDataSeries
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table) containing factors to multiply the default size (1) bycolumnName
- column insds
containing size scaling factors. The size data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
sds
- selectable data set (e.g. OneClick filterable table)keyColumn
- column insds
, specifying category valuesvalueColumn
- column insds
, specifying point sizes- Returns:
- this CategoryDataSeries
-
pointSize
public FigureImpl pointSize(SelectableDataSet sds, String keyColumn, String valueColumn, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:XYDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceXYDataSeries
- Parameters:
t
- table containing factors to multiply the default size (1) bycolumnName
- column int
containing size scaling factors. The size data for point i comes from row i.- Returns:
- this XYDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
t
- tablekeyColumn
- column int
, specifying category valuesvalueColumn
- column int
, specifying point sizes- Returns:
- this CategoryDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:DataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
factor
- point size- Returns:
- this data series.
-
pointSize
Description copied from interface:XYDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceXYDataSeries
- Parameters:
factors
- factors to multiply the default size (1) by- Returns:
- this XYDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:DataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
factor
- point size- Returns:
- this data series.
-
pointSize
Description copied from interface:XYDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceXYDataSeries
- Parameters:
factors
- factors to multiply the default size (1) by- Returns:
- this XYDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
category
- data pointfactor
- factor to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
category
- data pointfactor
- factor to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
category
- data pointfactor
- factor to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
category
- data pointfactor
- factor to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:DataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
factor
- point size- Returns:
- this data series.
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:DataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceDataSeries
- Specified by:
pointSize
in interfaceFigure
- Parameters:
factor
- point size- Returns:
- this data series.
-
pointSize
Description copied from interface:XYDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceXYDataSeries
- Parameters:
factors
- factors to multiply the default size (1) by- Returns:
- this XYDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointsVisible
Description copied from interface:DataSeries
Sets whether points are visible.- Specified by:
pointsVisible
in interfaceCategoryDataSeries
- Specified by:
pointsVisible
in interfaceDataSeries
- Specified by:
pointsVisible
in interfaceFigure
- Parameters:
visible
- point visibility- Returns:
- this data series.
-
pointsVisible
- Specified by:
pointsVisible
in interfaceFigure
- Specified by:
pointsVisible
in interfaceMultiSeries
-
seriesColor
Description copied from interface:DataSeries
Defines the default line and point color.- Specified by:
seriesColor
in interfaceDataSeries
- Specified by:
seriesColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
seriesColor
- Specified by:
seriesColor
in interfaceFigure
- Specified by:
seriesColor
in interfaceMultiSeries
-
seriesColor
Description copied from interface:DataSeries
Defines the default line and point color.- Specified by:
seriesColor
in interfaceDataSeries
- Specified by:
seriesColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
seriesColor
- Specified by:
seriesColor
in interfaceFigure
- Specified by:
seriesColor
in interfaceMultiSeries
-
seriesColor
Description copied from interface:DataSeries
Defines the default line and point color.- Specified by:
seriesColor
in interfaceDataSeries
- Specified by:
seriesColor
in interfaceFigure
- Parameters:
color
- color- Returns:
- this data series.
-
seriesColor
- Specified by:
seriesColor
in interfaceFigure
- Specified by:
seriesColor
in interfaceMultiSeries
-
seriesNamingFunction
Description copied from interface:MultiSeries
Defines the procedure to name a generated series. The input of the naming function is the table map key corresponding to the new series.- Specified by:
seriesNamingFunction
in interfaceFigure
- Specified by:
seriesNamingFunction
in interfaceMultiSeries
- Parameters:
namingFunction
- series naming closure
-
seriesNamingFunction
Description copied from interface:MultiSeries
Defines the procedure to name a generated series. The input of the naming function is the table map key corresponding to the new series.- Specified by:
seriesNamingFunction
in interfaceFigure
- Specified by:
seriesNamingFunction
in interfaceMultiSeries
- Parameters:
namingFunction
- series naming function
-
toolTipPattern
Description copied from interface:DataSeries
Sets the tooltip format.- Specified by:
toolTipPattern
in interfaceDataSeries
- Specified by:
toolTipPattern
in interfaceFigure
- Parameters:
format
- format- Returns:
- this data series.
-
toolTipPattern
- Specified by:
toolTipPattern
in interfaceFigure
- Specified by:
toolTipPattern
in interfaceMultiSeries
-
xToolTipPattern
Description copied from interface:DataSeries
Sets the x-value tooltip format.- Specified by:
xToolTipPattern
in interfaceDataSeries
- Specified by:
xToolTipPattern
in interfaceFigure
- Parameters:
format
- format- Returns:
- this data series.
-
xToolTipPattern
- Specified by:
xToolTipPattern
in interfaceFigure
- Specified by:
xToolTipPattern
in interfaceMultiSeries
-
yToolTipPattern
Description copied from interface:DataSeries
Sets the y-value tooltip format.- Specified by:
yToolTipPattern
in interfaceDataSeries
- Specified by:
yToolTipPattern
in interfaceFigure
- Parameters:
format
- format- Returns:
- this data series.
-
yToolTipPattern
- Specified by:
yToolTipPattern
in interfaceFigure
- Specified by:
yToolTipPattern
in interfaceMultiSeries
-
pointColor
public <CATEGORY extends Comparable, COLOR extends Paint> FigureImpl pointColor(Map<CATEGORY,COLOR> colors)Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical dataCOLOR
- type of color for the points- Parameters:
colors
- map from data points to theirPaint
s- Returns:
- this CategoryDataSeries
-
pointColor
public <CATEGORY extends Comparable, COLOR extends Paint> FigureImpl pointColor(Map<CATEGORY,COLOR> colors, Object... keys)- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColorInteger
public <CATEGORY extends Comparable, COLOR extends Integer> FigureImpl pointColorInteger(Map<CATEGORY,COLOR> colors)Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColorInteger
in interfaceCategoryDataSeries
- Specified by:
pointColorInteger
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical dataCOLOR
- type of color for the points- Parameters:
colors
- map from data points to the index of the color palette- Returns:
- this CategoryDataSeries
-
pointColorInteger
public <CATEGORY extends Comparable, COLOR extends Integer> FigureImpl pointColorInteger(Map<CATEGORY,COLOR> colors, Object... keys)- Specified by:
pointColorInteger
in interfaceFigure
- Specified by:
pointColorInteger
in interfaceMultiSeries
-
pointLabel
Description copied from interface:CategoryDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceCategoryDataSeries
- Specified by:
pointLabel
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical dataLABEL
- data type of the point labels- Parameters:
labels
- map used to determine point labels- Returns:
- this CategoryDataSeries
-
pointLabel
public <CATEGORY extends Comparable, LABEL> FigureImpl pointLabel(Map<CATEGORY,LABEL> labels, Object... keys)- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointSize
public <CATEGORY extends Comparable, NUMBER extends Number> FigureImpl pointSize(CATEGORY[] categories, NUMBER[] factors)Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical dataNUMBER
- data type of the point sizes- Parameters:
categories
- data pointsfactors
- factors to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
public <CATEGORY extends Comparable, NUMBER extends Number> FigureImpl pointSize(CATEGORY[] categories, NUMBER[] factors, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
public <CATEGORY extends Comparable, NUMBER extends Number> FigureImpl pointSize(Map<CATEGORY,NUMBER> factors)Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical dataNUMBER
- data type of the point sizes- Parameters:
factors
- map used to set sizes of specific data points- Returns:
- this CategoryDataSeries
-
pointSize
public <CATEGORY extends Comparable, NUMBER extends Number> FigureImpl pointSize(Map<CATEGORY,NUMBER> factors, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointShape
Description copied from interface:CategoryDataSeries
Sets the point shapes for data point i from index i of the input labels. Points outside of these indices use default shapes.- Specified by:
pointShape
in interfaceCategoryDataSeries
- Specified by:
pointShape
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical data- Parameters:
shapes
- map used to determine point shapes- Returns:
- this CategoryDataSeries
-
pointShape
public <CATEGORY extends Comparable> FigureImpl pointShape(Map<CATEGORY,String> shapes, Object... keys)- Specified by:
pointShape
in interfaceFigure
- Specified by:
pointShape
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical data- Parameters:
categories
- data pointsfactors
- factors to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
public <CATEGORY extends Comparable> FigureImpl pointSize(CATEGORY[] categories, double[] factors, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical data- Parameters:
categories
- data pointsfactors
- factors to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
public <CATEGORY extends Comparable> FigureImpl pointSize(CATEGORY[] categories, int[] factors, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Type Parameters:
CATEGORY
- type of the categorical data- Parameters:
categories
- data pointsfactors
- factors to multiply the default size (1) by- Returns:
- this CategoryDataSeries
-
pointSize
public <CATEGORY extends Comparable> FigureImpl pointSize(CATEGORY[] categories, long[] factors, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointColor
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Type Parameters:
COLOR
- type of input for the closure- Parameters:
colors
- closure from data points to theirPaint
s- Returns:
- this CategoryDataSeries
-
pointColor
public <COLOR extends Paint> FigureImpl pointColor(groovy.lang.Closure<COLOR> colors, Object... keys)- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColor
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceCategoryDataSeries
- Specified by:
pointColor
in interfaceFigure
- Type Parameters:
COLOR
- type of color for the points- Parameters:
colors
- function from data points to theirPaint
s- Returns:
- this CategoryDataSeries
-
pointColor
public <COLOR extends Paint> FigureImpl pointColor(Function<Comparable,COLOR> colors, Object... keys)- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColorInteger
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColorInteger
in interfaceCategoryDataSeries
- Specified by:
pointColorInteger
in interfaceFigure
- Type Parameters:
COLOR
- type of color palette indices- Parameters:
colors
- closure from data points to the index of the color palette- Returns:
- this CategoryDataSeries
-
pointColorInteger
public <COLOR extends Integer> FigureImpl pointColorInteger(groovy.lang.Closure<COLOR> colors, Object... keys)- Specified by:
pointColorInteger
in interfaceFigure
- Specified by:
pointColorInteger
in interfaceMultiSeries
-
pointColorInteger
Description copied from interface:CategoryDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColorInteger
in interfaceCategoryDataSeries
- Specified by:
pointColorInteger
in interfaceFigure
- Type Parameters:
COLOR
- type of color for the points- Parameters:
colors
- function from data points to the index of the color palette- Returns:
- this CategoryDataSeries
-
pointColorInteger
public <COLOR extends Integer> FigureImpl pointColorInteger(Function<Comparable,COLOR> colors, Object... keys)- Specified by:
pointColorInteger
in interfaceFigure
- Specified by:
pointColorInteger
in interfaceMultiSeries
-
pointLabel
Description copied from interface:CategoryDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceCategoryDataSeries
- Specified by:
pointLabel
in interfaceFigure
- Type Parameters:
LABEL
- data type of the point labels- Parameters:
labels
- closure used to determine point labels for input categories- Returns:
- this CategoryDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointLabel
Description copied from interface:CategoryDataSeries
Sets the point label for data point i from index i of the input labels. Points outside of these indices are unlabeled.- Specified by:
pointLabel
in interfaceCategoryDataSeries
- Specified by:
pointLabel
in interfaceFigure
- Type Parameters:
LABEL
- data type of the point labels- Parameters:
labels
- function used to determine point labels- Returns:
- this CategoryDataSeries
-
pointLabel
- Specified by:
pointLabel
in interfaceFigure
- Specified by:
pointLabel
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Type Parameters:
NUMBER
- data type of the point sizes- Parameters:
factors
- closure used to set sizes of data points- Returns:
- this CategoryDataSeries
-
pointSize
public <NUMBER extends Number> FigureImpl pointSize(groovy.lang.Closure<NUMBER> factors, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointSize
Description copied from interface:CategoryDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceCategoryDataSeries
- Specified by:
pointSize
in interfaceFigure
- Type Parameters:
NUMBER
- data type of the point sizes- Parameters:
factors
- function used to set sizes of data points- Returns:
- this CategoryDataSeries
-
pointSize
public <NUMBER extends Number> FigureImpl pointSize(Function<Comparable,NUMBER> factors, Object... keys)- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-
pointColor
Description copied from interface:XYDataSeries
Sets the point color. Unspecified points use the default color.- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceXYDataSeries
- Type Parameters:
T
- data type of thecolors
- Parameters:
colors
- colors. The color for data point i comes from index i.- Returns:
- this XYDataSeries
-
pointColor
- Specified by:
pointColor
in interfaceFigure
- Specified by:
pointColor
in interfaceMultiSeries
-
pointColorByY
Description copied from interface:DataSeries
Sets the point color for a data point based upon the y-value.- Specified by:
pointColorByY
in interfaceDataSeries
- Specified by:
pointColorByY
in interfaceFigure
- Parameters:
colors
- function from the y-value of data points toPaint
- Returns:
- this DataSeries
-
pointColorByY
- Specified by:
pointColorByY
in interfaceFigure
- Specified by:
pointColorByY
in interfaceMultiSeries
-
pointColorByY
Description copied from interface:CategoryDataSeries
Sets the point color for a data point based upon the y-value.- Specified by:
pointColorByY
in interfaceCategoryDataSeries
- Specified by:
pointColorByY
in interfaceFigure
- Parameters:
colors
- map from the y-value of data points toPaint
- Returns:
- this CategoryDataSeries
-
pointColorByY
- Specified by:
pointColorByY
in interfaceFigure
- Specified by:
pointColorByY
in interfaceMultiSeries
-
pointColorByY
Description copied from interface:DataSeries
Sets the point color for a data point based upon the y-value.- Specified by:
pointColorByY
in interfaceDataSeries
- Specified by:
pointColorByY
in interfaceFigure
- Parameters:
colors
- function from the y-value of data points toPaint
- Returns:
- this DataSeries
-
pointColorByY
- Specified by:
pointColorByY
in interfaceFigure
- Specified by:
pointColorByY
in interfaceMultiSeries
-
pointSize
Description copied from interface:XYDataSeries
Sets the point size. A scale factor of 1 is the default size. A scale factor of 2 is 2x the default size. Unspecified points use the default size.- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceXYDataSeries
- Type Parameters:
T
- data type of thefactors
- Parameters:
factors
- factors to multiply the default size (1) by- Returns:
- this XYDataSeries
-
pointSize
- Specified by:
pointSize
in interfaceFigure
- Specified by:
pointSize
in interfaceMultiSeries
-