deephaven.Plot.figure_wrapper

A figure for creating plots.

class FigureWrapper(*args, **kwargs)

Class which assembles a variety of plotting convenience methods into a single usable package

axes(*args)

Gets an axes.

Overload 1
param name

java.lang.String

return

(com.illumon.iris.db.plot.Figure) selected axes.

Overload 2
param id

int

return

(com.illumon.iris.db.plot.Figure) selected axes.

axesRemoveSeries(*names)

Removes the series with the specified names from this Axes.

Parameters

names – java.lang.String…

Returns

(com.illumon.iris.db.plot.Figure) this Chart

axis(dim)
Gets the Axis at dimension dim.

The x-axis is dimension 0, y-axis dimension 1, and the z-axis dimension 2.

Parameters

dim – int

Returns

(com.illumon.iris.db.plot.Figure) Axis at dimension dim

axisColor(color)

Sets the color for this Axis line and tick marks.

Overload 1
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this Axis

axisFormat(format)

Sets the AxisFormat for this Axis.

Parameters

format – com.illumon.iris.db.plot.axisformatters.AxisFormat

Returns

(com.illumon.iris.db.plot.Figure) this Axis

axisFormatPattern(pattern)

Sets the format pattern for this Axis’s labels.

Parameters

pattern – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axis

axisLabel(label)

Sets the label for this Axis.

Parameters

label – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axis

axisLabelFont(*args)

Sets the font for this Axis’s label.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

businessTime(*args)

Sets this Axis’s AxisTransform as an AxisTransformBusinessCalendar.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axis using the default business calendar.

Overload 2
param calendar

com.illumon.util.calendar.BusinessCalendar

return

(com.illumon.iris.db.plot.Figure) this Axis using the specified business calendar.

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) 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(*args)

Creates a category error bar plot with whiskers in the y direction.

Overload 1

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

T1[]

param yLow

T2[]

param yHigh

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 4

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 5

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 6

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 7

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 8

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 9

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

java.util.List<T1>

param yLow

java.util.List<T2>

param yHigh

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 10

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

T1[]

param yLow

T2[]

param yHigh

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 11

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 12

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 13

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 14

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 15

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 16

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

java.util.List<T1>

param yLow

java.util.List<T2>

param yHigh

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 17
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param categories

java.lang.String

param values

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 18
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param categories

java.lang.String

param values

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

catErrorBarBy(*args)

Creates a catErrorBar plot for each distinct grouping value specified in byColumns.

Overload 1
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param categories

java.lang.String

param values

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param categories

java.lang.String

param values

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

catHistPlot(*args)

Creates a histogram with discrete axis. Charts the frequency of each unique element in the input data.

Overload 1

Note: Java generics information - <T extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param x

T[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param x

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 3
param seriesName

java.lang.Comparable

param x

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 4
param seriesName

java.lang.Comparable

param x

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 5
param seriesName

java.lang.Comparable

param x

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 6

Note: Java generics information - <T extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param x

java.util.List<T>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 7
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 8
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

catPlot(*args)
Creates a plot with discrete axis.

Discrete data must not have duplicates.

Overload 1

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 4

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 5

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 6

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 7

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 8

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 9

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 10

Note: Java generics information - <T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

com.illumon.iris.db.plot.datasets.data.IndexableData<T1>

param values

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 11

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 12

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 13

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 14

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 15

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 16

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 17

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 18

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 19

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 20
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param categories

java.lang.String

param values

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 21
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param categories

java.lang.String

param values

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

catPlot3d(*args)

Incompatible overloads text - text from the first overload:

Creates a 3D plot with discrete axes.

(xCategory, zCategory) pairs must be unique.

Overload 1

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 4

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 5

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 6

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 7

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 8

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 9

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

T1[]

param values

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 10

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 11

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 12

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 13

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 14

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 15

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 16

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 17

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 18

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

T0[]

param zCategories

java.util.List<T1>

param values

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 19

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 20

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 21

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 22

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 23

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 24

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 25

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 26

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 27

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

T1[]

param values

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 28

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 29

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 30

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 31

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 32

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 33

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 34

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 35

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 36

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Comparable,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param xCategories

java.util.List<T0>

param zCategories

java.util.List<T1>

param values

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 37
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valuesColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 38
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valuesColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

catPlot3dBy(seriesName, t, xCategoriesColumn, zCategoriesColumn, valuesColumn, *byColumns)

Creates a 3D category plot per distinct grouping value specified in byColumns.

Parameters
  • seriesName – java.lang.Comparable

  • t – com.illumon.iris.db.tables.Table

  • xCategoriesColumn – java.lang.String

  • zCategoriesColumn – java.lang.String

  • valuesColumn – java.lang.String

  • byColumns – java.lang.String…

Returns

(com.illumon.iris.db.plot.Figure) dataset created for plot

catPlotBy(*args)

Creates a category plot per distinct grouping value specified in byColumns.

Overload 1
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param categories

java.lang.String

param values

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param categories

java.lang.String

param values

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

chart(*args)

Returns a chart from this Figure’s grid.

Overload 1
param index

int

return

(com.illumon.iris.db.plot.Figure) selected Chart

Overload 2
param rowNum

int

param colNum

int

return

(com.illumon.iris.db.plot.Figure) selected Chart

chartRemoveSeries(*names)

Removes the series with the specified names from this Chart.

Parameters

names – java.lang.String…

Returns

(com.illumon.iris.db.plot.Figure) this Chart

chartTitle(*args)

Sets the title of this Chart.

Overload 1
param title

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Chart

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param titleColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this Chart with the title set to display comma-separated values from the table

Overload 3
param t

com.illumon.iris.db.tables.Table

param titleColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this Chart with the title set to display comma-separated values from the table

Overload 4
param showColumnNamesInTitle

boolean

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param titleColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this Chart with the title set to display comma-separated values from the table

Overload 5
param showColumnNamesInTitle

boolean

param t

com.illumon.iris.db.tables.Table

param titleColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this Chart with the title set to display comma-separated values from the table

Overload 6
param titleFormat

java.lang.String

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param titleColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this Chart with the title set to display values from the table

Overload 7
param titleFormat

java.lang.String

param t

com.illumon.iris.db.tables.Table

param titleColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this Chart with the title set to display values from the table

chartTitleColor(color)

Sets the color of this Chart’s title.

Overload 1
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Chart

Overload 2
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this Chart

chartTitleFont(*args)

Sets the font of this Chart’s title.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Chart

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Chart

colSpan(n)

Sets the size of this Chart within the grid of the figure.

Parameters

n – int

Returns

(com.illumon.iris.db.plot.Figure) this Chart

errorBarColor(*args)

Sets the error bar Paint for this dataset.

Overload 1
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this DataSeries

Overload 2
param color

com.illumon.iris.gui.color.Paint

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3
param color

int

return

(com.illumon.iris.db.plot.Figure) this DataSeries

Overload 4
param color

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this DataSeries

Overload 6
param color

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

errorBarX(*args)

Creates an XY plot with error bars in the x direction.

Overload 1

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param xLow

T1[]

param xHigh

T2[]

param y

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param xLow

T1[]

param xHigh

T2[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param xLow

T1[]

param xHigh

T2[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 4
param seriesName

java.lang.Comparable

param x

double[]

param xLow

double[]

param xHigh

double[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 5
param seriesName

java.lang.Comparable

param x

double[]

param xLow

double[]

param xHigh

double[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 6
param seriesName

java.lang.Comparable

param x

double[]

param xLow

double[]

param xHigh

double[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 7
param seriesName

java.lang.Comparable

param x

float[]

param xLow

float[]

param xHigh

float[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 8
param seriesName

java.lang.Comparable

param x

float[]

param xLow

float[]

param xHigh

float[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 9
param seriesName

java.lang.Comparable

param x

float[]

param xLow

float[]

param xHigh

float[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 10
param seriesName

java.lang.Comparable

param x

int[]

param xLow

int[]

param xHigh

int[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 11
param seriesName

java.lang.Comparable

param x

int[]

param xLow

int[]

param xHigh

int[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 12
param seriesName

java.lang.Comparable

param x

int[]

param xLow

int[]

param xHigh

int[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 13
param seriesName

java.lang.Comparable

param x

long[]

param xLow

long[]

param xHigh

long[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 14
param seriesName

java.lang.Comparable

param x

long[]

param xLow

long[]

param xHigh

long[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 15
param seriesName

java.lang.Comparable

param x

long[]

param xLow

long[]

param xHigh

long[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 16

Note: Java generics information - <T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 17
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 18
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 19
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 20
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 21
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 22
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 23

Note: Java generics information - <T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 24

Note: Java generics information - <T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 25
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 26
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 27
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 28
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 29
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 30
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 31

Note: Java generics information - <T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 32
param seriesName

java.lang.Comparable

param x

short[]

param xLow

short[]

param xHigh

short[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 33
param seriesName

java.lang.Comparable

param x

short[]

param xLow

short[]

param xHigh

short[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 34
param seriesName

java.lang.Comparable

param x

short[]

param xLow

short[]

param xHigh

short[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 35

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param xLow

java.util.List<T1>

param xHigh

java.util.List<T2>

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 36

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param xLow

java.util.List<T1>

param xHigh

java.util.List<T2>

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 37

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param xLow

java.util.List<T1>

param xHigh

java.util.List<T2>

param y

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 38
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 39
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

errorBarXBy(*args)

Creates an errorBarX plot per distinct grouping value specified in byColumns.

Overload 1
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

errorBarXY(*args)

Creates an XY plot with error bars in both the x and y directions.

Overload 1

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number,T4 extends java.lang.Number,T5 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param xLow

T1[]

param xHigh

T2[]

param y

T3[]

param yLow

T4[]

param yHigh

T5[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param xLow

T1[]

param xHigh

T2[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param xLow

T1[]

param xHigh

T2[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 4
param seriesName

java.lang.Comparable

param x

double[]

param xLow

double[]

param xHigh

double[]

param y

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 5
param seriesName

java.lang.Comparable

param x

double[]

param xLow

double[]

param xHigh

double[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 6
param seriesName

java.lang.Comparable

param x

double[]

param xLow

double[]

param xHigh

double[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 7
param seriesName

java.lang.Comparable

param x

float[]

param xLow

float[]

param xHigh

float[]

param y

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 8
param seriesName

java.lang.Comparable

param x

float[]

param xLow

float[]

param xHigh

float[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 9
param seriesName

java.lang.Comparable

param x

float[]

param xLow

float[]

param xHigh

float[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 10
param seriesName

java.lang.Comparable

param x

int[]

param xLow

int[]

param xHigh

int[]

param y

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 11
param seriesName

java.lang.Comparable

param x

int[]

param xLow

int[]

param xHigh

int[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 12
param seriesName

java.lang.Comparable

param x

int[]

param xLow

int[]

param xHigh

int[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 13
param seriesName

java.lang.Comparable

param x

long[]

param xLow

long[]

param xHigh

long[]

param y

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 14
param seriesName

java.lang.Comparable

param x

long[]

param xLow

long[]

param xHigh

long[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 15
param seriesName

java.lang.Comparable

param x

long[]

param xLow

long[]

param xHigh

long[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 16

Note: Java generics information - <T3 extends java.lang.Number,T4 extends java.lang.Number,T5 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

T3[]

param yLow

T4[]

param yHigh

T5[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 17
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 18
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 19
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 20
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 21
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 22
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 23

Note: Java generics information - <T3 extends java.lang.Number,T4 extends java.lang.Number,T5 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param xLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param xHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

java.util.List<T3>

param yLow

java.util.List<T4>

param yHigh

java.util.List<T5>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 24

Note: Java generics information - <T3 extends java.lang.Number,T4 extends java.lang.Number,T5 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

T3[]

param yLow

T4[]

param yHigh

T5[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 25
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 26
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 27
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 28
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 29
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 30
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 31

Note: Java generics information - <T3 extends java.lang.Number,T4 extends java.lang.Number,T5 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param xLow

java.util.Date[]

param xHigh

java.util.Date[]

param y

java.util.List<T3>

param yLow

java.util.List<T4>

param yHigh

java.util.List<T5>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 32
param seriesName

java.lang.Comparable

param x

short[]

param xLow

short[]

param xHigh

short[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 33
param seriesName

java.lang.Comparable

param x

short[]

param xLow

short[]

param xHigh

short[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 34
param seriesName

java.lang.Comparable

param x

short[]

param xLow

short[]

param xHigh

short[]

param y

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 35

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param xLow

java.util.List<T1>

param xHigh

java.util.List<T2>

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 36

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param xLow

java.util.List<T1>

param xHigh

java.util.List<T2>

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 37

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number,T4 extends java.lang.Number,T5 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param xLow

java.util.List<T1>

param xHigh

java.util.List<T2>

param y

java.util.List<T3>

param yLow

java.util.List<T4>

param yHigh

java.util.List<T5>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 38
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 39
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

errorBarXYBy(*args)

Creates an errorBar plot per distinct grouping value specified in byColumns.

Overload 1
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param xLow

java.lang.String

param xHigh

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

errorBarY(*args)

Creates an XY plot with error bars in the y direction.

Overload 1

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param yLow

T2[]

param yHigh

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 4
param seriesName

java.lang.Comparable

param x

double[]

param y

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 5
param seriesName

java.lang.Comparable

param x

double[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 6
param seriesName

java.lang.Comparable

param x

double[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 7
param seriesName

java.lang.Comparable

param x

float[]

param y

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 8
param seriesName

java.lang.Comparable

param x

float[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 9
param seriesName

java.lang.Comparable

param x

float[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 10
param seriesName

java.lang.Comparable

param x

int[]

param y

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 11
param seriesName

java.lang.Comparable

param x

int[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 12
param seriesName

java.lang.Comparable

param x

int[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 13
param seriesName

java.lang.Comparable

param x

long[]

param y

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 14
param seriesName

java.lang.Comparable

param x

long[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 15
param seriesName

java.lang.Comparable

param x

long[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 16

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

T1[]

param yLow

T2[]

param yHigh

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 17
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 18
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 19
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 20
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 21
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 22
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 23

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

java.util.List<T1>

param yLow

java.util.List<T2>

param yHigh

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 24

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

T1[]

param yLow

T2[]

param yHigh

T3[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 25
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

double[]

param yLow

double[]

param yHigh

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 26
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

float[]

param yLow

float[]

param yHigh

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 27
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

int[]

param yLow

int[]

param yHigh

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 28
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

long[]

param yLow

long[]

param yHigh

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 29
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 30
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 31

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

java.util.List<T1>

param yLow

java.util.List<T2>

param yHigh

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 32
param seriesName

java.lang.Comparable

param x

short[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 33
param seriesName

java.lang.Comparable

param x

short[]

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 34
param seriesName

java.lang.Comparable

param x

short[]

param y

short[]

param yLow

short[]

param yHigh

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 35

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param yLow

com.illumon.iris.db.tables.utils.DBDateTime[]

param yHigh

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 36

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

java.util.Date[]

param yLow

java.util.Date[]

param yHigh

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 37

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

java.util.List<T1>

param yLow

java.util.List<T2>

param yHigh

java.util.List<T3>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 38
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 39
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

errorBarYBy(*args)

Creates a errorBarY plot per distinct grouping value specified in byColumns.

Overload 1
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param y

java.lang.String

param yLow

java.lang.String

param yHigh

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

property figure

The underlying java Figure object

figureRemoveSeries(*names)

Removes all series with names from this Figure.

Parameters

names – java.lang.String…

Returns

(com.illumon.iris.db.plot.Figure) this Figure

figureTitle(title)

Sets the title of this Figure

Parameters

title – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Figure

figureTitleColor(color)

Sets the color of this Figure’s title

Overload 1
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Figure

Overload 2
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this Figure

figureTitleFont(*args)

Sets the font of this Figure’s title

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Figure

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Figure

funcNPoints(npoints)

Sets the number of data points in this dataset.

Parameters

npoints – int

Returns

(com.illumon.iris.db.plot.Figure) this data series with the specified number of points.

funcRange(*args)

Sets the data range for this series.

Overload 1
param xmin

double

param xmax

double

return

(com.illumon.iris.db.plot.Figure) this data series with the new range

Overload 2
param xmin

double

param xmax

double

param zmin

double

param zmax

double

return

(com.illumon.iris.db.plot.Figure) this data series with the new range

Overload 3
param xmin

double

param xmax

double

param zmin

double

param zmax

double

param npoints

int

return

(com.illumon.iris.db.plot.Figure) this data series with the new range

Overload 4
param xmin

double

param xmax

double

param npoints

int

return

(com.illumon.iris.db.plot.Figure) this data series with the new range

getValidGroups()

Get the collection of valid users :return: java array of user id strings

getWidget()

Get figure widget, if applicable. It will be None if .show() has NOT been called. :return: None or the widget reference

gradientVisible(*args)

Sets whether bar gradients are visible.

Overload 1
param visible

boolean

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param visible

boolean

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

gridLinesVisible(visible)

Sets whether the Chart has grid lines.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Chart

group(*args)

Sets the group for this dataset.

Overload 1
param group

int

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param group

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

histPlot(*args)

Creates a histogram.

Overload 1
param seriesName

java.lang.Comparable

param counts

com.illumon.iris.db.tables.Table

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 3
param seriesName

java.lang.Comparable

param x

double[]

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 4
param seriesName

java.lang.Comparable

param x

float[]

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 5
param seriesName

java.lang.Comparable

param x

int[]

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 6
param seriesName

java.lang.Comparable

param x

long[]

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 7
param seriesName

java.lang.Comparable

param x

short[]

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 8

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 9
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 10
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 11

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 12
param seriesName

java.lang.Comparable

param x

double[]

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 13
param seriesName

java.lang.Comparable

param x

float[]

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 14
param seriesName

java.lang.Comparable

param x

int[]

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 15
param seriesName

java.lang.Comparable

param x

long[]

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 16
param seriesName

java.lang.Comparable

param x

short[]

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 17

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 18
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 19
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

param rangeMin

double

param rangeMax

double

param nbins

int

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

invert(*args)

Inverts this Axis so that larger values are closer to the origin.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param invert

boolean

return

(com.illumon.iris.db.plot.Figure) this Axes

legendColor(color)

Sets the color of the text inside the Chart’s legend.

Overload 1
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Chart

Overload 2
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this Chart

legendFont(*args)

Sets the font of this Chart’s legend.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Chart

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Chart

legendVisible(visible)

Sets whether the Chart’s legend is shown or hidden.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Chart

lineColor(*args)

Defines the default line color.

Overload 1
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param color

com.illumon.iris.gui.color.Paint

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3
param color

int

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 4
param color

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 6
param color

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

lineStyle(*args)

Sets the line style.

Overload 1
param style

com.illumon.iris.db.plot.LineStyle

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param style

com.illumon.iris.db.plot.LineStyle

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

linesVisible(*args)

Sets whether lines are visible.

Overload 1
param visible

java.lang.Boolean

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param visible

java.lang.Boolean

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

log()

Sets the AxisTransform as log base 10.

Returns

(com.illumon.iris.db.plot.Figure) this Axis

max(*args)

Sets the maximum range of this Axis.

Overload 1
param max

double

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

maxRowsInTitle(maxRowsCount)

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 just maxRowsCount 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.

Parameters

maxRowsCount – int

Returns

(com.illumon.iris.db.plot.Figure) this Chart

min(*args)

Sets the minimum range of this Axis.

Overload 1
param min

double

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

minorTicks(count)
Sets the number of minor ticks between consecutive major ticks.

These minor ticks are equally spaced.

Parameters

count – int

Returns

(com.illumon.iris.db.plot.Figure) this Axis

minorTicksVisible(visible)

Sets whether minor ticks are drawn on this Axis.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axis

newAxes(*args)

Creates new Axes on this Chart.

Overload 1
return

(com.illumon.iris.db.plot.Figure) newly created Axes with dimension 2 on this Chart

Overload 2
param name

java.lang.String

return

(com.illumon.iris.db.plot.Figure) newly created Axes with dimension 2 on this Chart

Overload 3
param dim

int

return

(com.illumon.iris.db.plot.Figure) newly created Axes with dimension dim on this Chart

Overload 4
param name

java.lang.String

param dim

int

return

(com.illumon.iris.db.plot.Figure) newly created Axes with dimension dim on this Chart

newChart(*args)

Adds a new Chart to this figure.

Overload 1
return

(com.illumon.iris.db.plot.Figure) the new Chart. The Chart 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.

Overload 2
param index

int

return

(com.illumon.iris.db.plot.Figure) the new Chart. The Chart is placed at the grid space indicated by the index.

Overload 3
param rowNum

int

param colNum

int

return

(com.illumon.iris.db.plot.Figure) the new Chart. The Chart is placed at the grid space [rowNum, colNum.

ohlcPlot(*args)

Creates an open-high-low-close plot.

Overload 1

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number,T4 extends java.lang.Number>

param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.tables.utils.DBDateTime[]

param open

T1[]

param high

T2[]

param low

T3[]

param close

T4[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 2
param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.tables.utils.DBDateTime[]

param open

double[]

param high

double[]

param low

double[]

param close

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 3
param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.tables.utils.DBDateTime[]

param open

float[]

param high

float[]

param low

float[]

param close

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 4
param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.tables.utils.DBDateTime[]

param open

int[]

param high

int[]

param low

int[]

param close

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 5
param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.tables.utils.DBDateTime[]

param open

long[]

param high

long[]

param low

long[]

param close

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 6
param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.tables.utils.DBDateTime[]

param open

short[]

param high

short[]

param low

short[]

param close

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 7

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number,T4 extends java.lang.Number>

param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.tables.utils.DBDateTime[]

param open

java.util.List<T1>

param high

java.util.List<T2>

param low

java.util.List<T3>

param close

java.util.List<T4>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 8

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number,T4 extends java.lang.Number>

param seriesName

java.lang.Comparable

param time

java.util.Date[]

param open

T1[]

param high

T2[]

param low

T3[]

param close

T4[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 9
param seriesName

java.lang.Comparable

param time

java.util.Date[]

param open

double[]

param high

double[]

param low

double[]

param close

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 10
param seriesName

java.lang.Comparable

param time

java.util.Date[]

param open

float[]

param high

float[]

param low

float[]

param close

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 11
param seriesName

java.lang.Comparable

param time

java.util.Date[]

param open

int[]

param high

int[]

param low

int[]

param close

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 12
param seriesName

java.lang.Comparable

param time

java.util.Date[]

param open

long[]

param high

long[]

param low

long[]

param close

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 13
param seriesName

java.lang.Comparable

param time

java.util.Date[]

param open

short[]

param high

short[]

param low

short[]

param close

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 14

Note: Java generics information - <T1 extends java.lang.Number,T2 extends java.lang.Number,T3 extends java.lang.Number,T4 extends java.lang.Number>

param seriesName

java.lang.Comparable

param time

java.util.Date[]

param open

java.util.List<T1>

param high

java.util.List<T2>

param low

java.util.List<T3>

param close

java.util.List<T4>

return

(com.illumon.iris.db.plot.Figure) dataset created by the plot

Overload 15
param seriesName

java.lang.Comparable

param time

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

param open

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

param high

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

param low

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

param close

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 16
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param timeCol

java.lang.String

param openCol

java.lang.String

param highCol

java.lang.String

param lowCol

java.lang.String

param closeCol

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 17
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param timeCol

java.lang.String

param openCol

java.lang.String

param highCol

java.lang.String

param lowCol

java.lang.String

param closeCol

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

ohlcPlotBy(*args)

Creates an open-high-low-close plot per distinct grouping value specified in byColumns.

Overload 1
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param timeCol

java.lang.String

param openCol

java.lang.String

param highCol

java.lang.String

param lowCol

java.lang.String

param closeCol

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param timeCol

java.lang.String

param openCol

java.lang.String

param highCol

java.lang.String

param lowCol

java.lang.String

param closeCol

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

piePercentLabelFormat(*args)
Sets the format of the percentage point label format

in pie plots.

Overload 1
param format

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param format

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

piePlot(*args)
Creates a pie plot.

Categorical data must not have duplicates.

Overload 1

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 4

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 5

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 6

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 7

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

T0[]

param values

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 8

Note: Java generics information - <T1 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

com.illumon.iris.db.plot.datasets.data.IndexableData<T1>

param values

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 9

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 10

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 11

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 12

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 13

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 14

Note: Java generics information - <T0 extends java.lang.Comparable>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 15

Note: Java generics information - <T0 extends java.lang.Comparable,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param categories

java.util.List<T0>

param values

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 16
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param categories

java.lang.String

param values

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 17
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param categories

java.lang.String

param values

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

plot(*args)

Creates an XY plot.

Overload 1

Note: Java generics information - <T extends java.lang.Number>

param seriesName

java.lang.Comparable

param function

groovy.lang.Closure<T>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param function

java.util.function.DoubleUnaryOperator

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 4

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 5

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 6

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 7

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 8

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 9

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 10

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 11

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 12

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

double[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 13
param seriesName

java.lang.Comparable

param x

double[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 14
param seriesName

java.lang.Comparable

param x

double[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 15
param seriesName

java.lang.Comparable

param x

double[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 16
param seriesName

java.lang.Comparable

param x

double[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 17
param seriesName

java.lang.Comparable

param x

double[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 18
param seriesName

java.lang.Comparable

param x

double[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 19
param seriesName

java.lang.Comparable

param x

double[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 20

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

double[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 21

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

float[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 22
param seriesName

java.lang.Comparable

param x

float[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 23
param seriesName

java.lang.Comparable

param x

float[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 24
param seriesName

java.lang.Comparable

param x

float[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 25
param seriesName

java.lang.Comparable

param x

float[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 26
param seriesName

java.lang.Comparable

param x

float[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 27
param seriesName

java.lang.Comparable

param x

float[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 28
param seriesName

java.lang.Comparable

param x

float[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 29

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

float[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 30

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

int[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 31
param seriesName

java.lang.Comparable

param x

int[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 32
param seriesName

java.lang.Comparable

param x

int[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 33
param seriesName

java.lang.Comparable

param x

int[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 34
param seriesName

java.lang.Comparable

param x

int[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 35
param seriesName

java.lang.Comparable

param x

int[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 36
param seriesName

java.lang.Comparable

param x

int[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 37
param seriesName

java.lang.Comparable

param x

int[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 38

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

int[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 39

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

long[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 40
param seriesName

java.lang.Comparable

param x

long[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 41
param seriesName

java.lang.Comparable

param x

long[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 42
param seriesName

java.lang.Comparable

param x

long[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 43
param seriesName

java.lang.Comparable

param x

long[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 44
param seriesName

java.lang.Comparable

param x

long[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 45
param seriesName

java.lang.Comparable

param x

long[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 46
param seriesName

java.lang.Comparable

param x

long[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 47

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

long[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 48

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 49
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 50
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 51
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 52
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 53
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 54
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 55
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 56

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.tables.utils.DBDateTime[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 57

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 58
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 59
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 60
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 61
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 62
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 63
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 64
param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 65

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.Date[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 66

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

short[]

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 67
param seriesName

java.lang.Comparable

param x

short[]

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 68
param seriesName

java.lang.Comparable

param x

short[]

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 69
param seriesName

java.lang.Comparable

param x

short[]

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 70
param seriesName

java.lang.Comparable

param x

short[]

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 71
param seriesName

java.lang.Comparable

param x

short[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 72
param seriesName

java.lang.Comparable

param x

short[]

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 73
param seriesName

java.lang.Comparable

param x

short[]

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 74

Note: Java generics information - <T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

short[]

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 75

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

T1[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 76

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 77

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 78

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 79

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 80

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 81

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 82

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 83

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

java.util.List<T0>

param y

java.util.List<T1>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 84
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param y

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 85
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param y

java.lang.String

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 86
param seriesName

java.lang.Comparable

param x

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

param y

com.illumon.iris.db.plot.datasets.data.IndexableNumericData

param hasXTimeAxis

boolean

param hasYTimeAxis

boolean

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

plot3d(*args)

Creates an XYZ plot.

There are 733 overloads, restricting signature summary to first 50: Overload 1

Note: Java generics information - <T extends java.lang.Number>

param seriesName

java.lang.Comparable

param function

groovy.lang.Closure<T>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param function

java.util.function.DoubleBinaryOperator

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 3

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 4

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 5

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 6

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 7

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 8

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 9

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 10

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 11

Note: Java generics information - <T0 extends java.lang.Number,T1 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

T1[]

param z

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 12

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 13

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 14

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 15

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 16

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 17

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 18

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 19

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 20

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

double[]

param z

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 21

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 22

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 23

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 24

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 25

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 26

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 27

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 28

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 29

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

float[]

param z

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 30

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 31

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 32

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 33

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 34

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 35

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 36

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 37

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 38

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

int[]

param z

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 39

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 40

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 41

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 42

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

int[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 43

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

long[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 44

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

com.illumon.iris.db.tables.utils.DBDateTime[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 45

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

java.util.Date[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 46

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

short[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 47

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

long[]

param z

java.util.List<T2>

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 48

Note: Java generics information - <T0 extends java.lang.Number,T2 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param z

T2[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 49

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param z

double[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 50

Note: Java generics information - <T0 extends java.lang.Number>

param seriesName

java.lang.Comparable

param x

T0[]

param y

com.illumon.iris.db.tables.utils.DBDateTime[]

param z

float[]

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

plot3dBy(seriesName, t, x, y, z, *byColumns)

Creates an XYZ plot per distinct grouping value specified in byColumns.

Parameters
  • seriesName – java.lang.Comparable

  • t – com.illumon.iris.db.tables.Table

  • x – java.lang.String

  • y – java.lang.String

  • z – java.lang.String

  • byColumns – java.lang.String…

Returns

(com.illumon.iris.db.plot.Figure) dataset created for plot

plotBy(*args)

Creates an XY plot per distinct grouping value specified in byColumns.

Overload 1
param seriesName

java.lang.Comparable

param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param x

java.lang.String

param y

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

Overload 2
param seriesName

java.lang.Comparable

param t

com.illumon.iris.db.tables.Table

param x

java.lang.String

param y

java.lang.String

param byColumns

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) dataset created for plot

plotOrientation(orientation)

Sets the orientation of plots in this Chart.

Parameters

orientation – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Chart

plotStyle(style)

Sets the PlotStyle of this Axes.

Overload 1
param style

com.illumon.iris.db.plot.PlotStyle

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param style

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

pointColor(*args)

Sets the point color. Unspecified points use the default color.

Overload 1
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 4
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 6
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 7
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 8
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 9
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 10
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 11
param t

com.illumon.iris.db.tables.Table

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 12
param t

com.illumon.iris.db.tables.Table

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 13
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 14
param color

com.illumon.iris.gui.color.Paint

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 15
param colors

com.illumon.iris.gui.color.Paint…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 16
param colors

com.illumon.iris.gui.color.Paint[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 17
param color

int

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 18
param color

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 19
param colors

int…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 20
param colors

int[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 21
param category

java.lang.Comparable

param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 22
param category

java.lang.Comparable

param color

com.illumon.iris.gui.color.Paint

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 23
param category

java.lang.Comparable

param color

int

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 24
param category

java.lang.Comparable

param color

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 25
param category

java.lang.Comparable

param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 26
param category

java.lang.Comparable

param color

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 27
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 28
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param color

com.illumon.iris.gui.color.Paint

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 29
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param color

int

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 30
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param color

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 31
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 32
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param color

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 33
param colors

java.lang.Integer…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 34
param colors

java.lang.Integer[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 35
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 36
param color

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 37
param colors

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 38
param colors

java.lang.String[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 39

Note: Java generics information - <CATEGORY extends java.lang.Comparable,COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.Map<CATEGORY,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 40

Note: Java generics information - <CATEGORY extends java.lang.Comparable,COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.Map<CATEGORY,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 41

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 42

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 43

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 44

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 45

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 46

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 47

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

com.illumon.iris.db.plot.datasets.data.IndexableData<T>

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 48

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

com.illumon.iris.db.plot.datasets.data.IndexableData<T>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointColorByX(*args)

Uses the function colors to determine the point colors for this dataset from the input x-axis value.

Overload 1

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 2

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 4

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointColorByY(*args)

Sets the point color for a data point based upon the y-value.

Overload 1

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<T>

return

(com.illumon.iris.db.plot.Figure) this DataSeries

Overload 2

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<T>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

java.util.Map<java.lang.Double,T>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 4

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

java.util.Map<java.lang.Double,T>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Double,T>

return

(com.illumon.iris.db.plot.Figure) this DataSeries

Overload 6

Note: Java generics information - <T extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Double,T>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointColorByZ(*args)

Sets the point color for a data point based upon the z-value.

Overload 1

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 2

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

groovy.lang.Closure<COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 4

Note: Java generics information - <COLOR extends com.illumon.iris.gui.color.Paint>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointColorInteger(*args)

Sets the point color. Unspecified points use the default color.

Overload 1
param colors

com.illumon.iris.db.plot.datasets.data.IndexableData<java.lang.Integer>

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 2
param colors

com.illumon.iris.db.plot.datasets.data.IndexableData<java.lang.Integer>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <CATEGORY extends java.lang.Comparable,COLOR extends java.lang.Integer>

param colors

java.util.Map<CATEGORY,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 4

Note: Java generics information - <CATEGORY extends java.lang.Comparable,COLOR extends java.lang.Integer>

param colors

java.util.Map<CATEGORY,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

groovy.lang.Closure<COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 6

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

groovy.lang.Closure<COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 7

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 8

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 9

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 10

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointColorIntegerByX(*args)
Overload 1

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

groovy.lang.Closure<COLOR>

return

com.illumon.iris.db.plot.Figure

Overload 2

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

groovy.lang.Closure<COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

return

com.illumon.iris.db.plot.Figure

Overload 4

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointColorIntegerByZ(*args)
Overload 1

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

groovy.lang.Closure<COLOR>

return

com.illumon.iris.db.plot.Figure

Overload 2

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

groovy.lang.Closure<COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

return

com.illumon.iris.db.plot.Figure

Overload 4

Note: Java generics information - <COLOR extends java.lang.Integer>

param colors

java.util.function.Function<java.lang.Comparable,COLOR>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointLabel(*args)
Sets the point label for data point i from index i of the input labels.

Points outside of these indices are unlabeled.

Overload 1
param labels

com.illumon.iris.db.plot.datasets.data.IndexableData<?>

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 2
param labels

com.illumon.iris.db.plot.datasets.data.IndexableData<?>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 4
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 6
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 7
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 8
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 9
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 10
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 11
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 12
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 13
param t

com.illumon.iris.db.tables.Table

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 14
param t

com.illumon.iris.db.tables.Table

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 15
param category

java.lang.Comparable

param label

java.lang.Object

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 16
param category

java.lang.Comparable

param label

java.lang.Object

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 17
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param label

java.lang.Object

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 18
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param label

java.lang.Object

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 19
param label

java.lang.Object

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 20
param label

java.lang.Object

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 21
param labels

java.lang.Object…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 22
param labels

java.lang.Object[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 23

Note: Java generics information - <CATEGORY extends java.lang.Comparable,LABEL>

param labels

java.util.Map<CATEGORY,LABEL>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 24

Note: Java generics information - <CATEGORY extends java.lang.Comparable,LABEL>

param labels

java.util.Map<CATEGORY,LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 25

Note: Java generics information - <LABEL>

param labels

groovy.lang.Closure<LABEL>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 26

Note: Java generics information - <LABEL>

param labels

groovy.lang.Closure<LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 27

Note: Java generics information - <LABEL>

param labels

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,LABEL>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 28

Note: Java generics information - <LABEL>

param labels

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 29

Note: Java generics information - <LABEL>

param labels

java.util.function.Function<java.lang.Comparable,LABEL>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 30

Note: Java generics information - <LABEL>

param labels

java.util.function.Function<java.lang.Comparable,LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointLabelByX(*args)
Overload 1

Note: Java generics information - <LABEL>

param labels

groovy.lang.Closure<LABEL>

return

com.illumon.iris.db.plot.Figure

Overload 2

Note: Java generics information - <LABEL>

param labels

groovy.lang.Closure<LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <LABEL>

param labels

java.util.function.Function<java.lang.Comparable,LABEL>

return

com.illumon.iris.db.plot.Figure

Overload 4

Note: Java generics information - <LABEL>

param labels

java.util.function.Function<java.lang.Comparable,LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointLabelByZ(*args)
Overload 1

Note: Java generics information - <LABEL>

param labels

groovy.lang.Closure<LABEL>

return

com.illumon.iris.db.plot.Figure

Overload 2

Note: Java generics information - <LABEL>

param labels

groovy.lang.Closure<LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <LABEL>

param labels

java.util.function.Function<java.lang.Comparable,LABEL>

return

com.illumon.iris.db.plot.Figure

Overload 4

Note: Java generics information - <LABEL>

param labels

java.util.function.Function<java.lang.Comparable,LABEL>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointLabelFormat(*args)

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).

Overload 1
param format

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param format

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointShape(*args)
Sets the point shapes for data point i from index i of the input labels.

Points outside of these indices use default shapes.

Overload 1
param shapes

com.illumon.iris.db.plot.datasets.data.IndexableData<java.lang.String>

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 2
param shapes

com.illumon.iris.db.plot.datasets.data.IndexableData<java.lang.String>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 4
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 6
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 7
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 8
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 9
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 10
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 11
param shape

com.illumon.iris.gui.shape.Shape

return

(com.illumon.iris.db.plot.Figure) this DataSeries

Overload 12
param shape

com.illumon.iris.gui.shape.Shape

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 13
param shapes

com.illumon.iris.gui.shape.Shape…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 14
param shapes

com.illumon.iris.gui.shape.Shape[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 15
param shapes

groovy.lang.Closure<java.lang.String>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 16
param shapes

groovy.lang.Closure<java.lang.String>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 17
param category

java.lang.Comparable

param shape

com.illumon.iris.gui.shape.Shape

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 18
param category

java.lang.Comparable

param shape

com.illumon.iris.gui.shape.Shape

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 19
param category

java.lang.Comparable

param shape

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 20
param category

java.lang.Comparable

param shape

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 21
param shape

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this DataSeries

Overload 22
param shape

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 23
param shapes

java.lang.String…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 24
param shapes

java.lang.String[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 25
param shapes

java.util.function.Function<java.lang.Comparable,java.lang.String>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 26
param shapes

java.util.function.Function<java.lang.Comparable,java.lang.String>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 27

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param shapes

java.util.Map<CATEGORY,java.lang.String>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 28

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param shapes

java.util.Map<CATEGORY,java.lang.String>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointSize(*args)
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.

Overload 1
param factors

com.illumon.iris.db.plot.datasets.data.IndexableData<java.lang.Double>

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 2
param factors

com.illumon.iris.db.plot.datasets.data.IndexableData<java.lang.Double>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 4
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 6
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 7
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 8
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 9
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 10
param t

com.illumon.iris.db.tables.Table

param columnName

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 11
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 12
param t

com.illumon.iris.db.tables.Table

param keyColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 13
param t

com.illumon.iris.db.tables.Table

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 14
param t

com.illumon.iris.db.tables.Table

param xCategoriesColumn

java.lang.String

param zCategoriesColumn

java.lang.String

param valueColumn

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 15
param factor

double

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 16
param factor

double

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 17
param factors

double…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 18
param factors

double[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 19
param factor

int

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 20
param factor

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 21
param factors

int…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 22
param factors

int[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 23
param category

java.lang.Comparable

param factor

double

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 24
param category

java.lang.Comparable

param factor

double

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 25
param category

java.lang.Comparable

param factor

int

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 26
param category

java.lang.Comparable

param factor

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 27
param category

java.lang.Comparable

param factor

java.lang.Number

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 28
param category

java.lang.Comparable

param factor

java.lang.Number

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 29
param category

java.lang.Comparable

param factor

long

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 30
param category

java.lang.Comparable

param factor

long

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 31
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

double

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 32
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

double

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 33
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

int

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 34
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 35
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

java.lang.Number

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 36
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

java.lang.Number

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 37
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

long

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 38
param xCategory

java.lang.Comparable

param zCategory

java.lang.Comparable

param factor

long

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 39
param factor

java.lang.Number

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 40
param factor

java.lang.Number

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 41
param factor

long

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 42
param factor

long

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 43
param factors

long…

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 44
param factors

long[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 45

Note: Java generics information - <CATEGORY extends java.lang.Comparable,NUMBER extends java.lang.Number>

param categories

CATEGORY[]

param factors

NUMBER[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 46

Note: Java generics information - <CATEGORY extends java.lang.Comparable,NUMBER extends java.lang.Number>

param categories

CATEGORY[]

param factors

NUMBER[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 47

Note: Java generics information - <CATEGORY extends java.lang.Comparable,NUMBER extends java.lang.Number>

param factors

java.util.Map<CATEGORY,NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 48

Note: Java generics information - <CATEGORY extends java.lang.Comparable,NUMBER extends java.lang.Number>

param factors

java.util.Map<CATEGORY,NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 49

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param categories

CATEGORY[]

param factors

double[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 50

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param categories

CATEGORY[]

param factors

double[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 51

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param categories

CATEGORY[]

param factors

int[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 52

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param categories

CATEGORY[]

param factors

int[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 53

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param categories

CATEGORY[]

param factors

long[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 54

Note: Java generics information - <CATEGORY extends java.lang.Comparable>

param categories

CATEGORY[]

param factors

long[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 55

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

groovy.lang.Closure<NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 56

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

groovy.lang.Closure<NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 57

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 58

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.BiFunction<java.lang.Comparable,java.lang.Comparable,NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 59

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.Function<java.lang.Comparable,NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries

Overload 60

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.Function<java.lang.Comparable,NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 61

Note: Java generics information - <T extends java.lang.Number>

param factors

T[]

return

(com.illumon.iris.db.plot.Figure) this XYDataSeries

Overload 62

Note: Java generics information - <T extends java.lang.Number>

param factors

T[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 63

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable,NUMBER extends java.lang.Number>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

NUMBER[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 64

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable,NUMBER extends java.lang.Number>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

NUMBER[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 65

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

double[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 66

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

double[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 67

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

int[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 68

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

int[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 69

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

long[]

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 70

Note: Java generics information - <XCATEGORY extends java.lang.Comparable,ZCATEGORY extends java.lang.Comparable>

param xCategories

XCATEGORY[]

param zCategories

ZCATEGORY[]

param factors

long[]

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointSizeByX(*args)

Uses the function factors to determine the point sizes for this dataset from the input x-axis value.

Overload 1

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

groovy.lang.Closure<NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 2

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

groovy.lang.Closure<NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.Function<java.lang.Comparable,NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 4

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.Function<java.lang.Comparable,NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointSizeByZ(*args)

Uses the function factors to determine the point sizes for this dataset from the input z-axis value.

Overload 1

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

groovy.lang.Closure<NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 2

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

groovy.lang.Closure<NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.Function<java.lang.Comparable,NUMBER>

return

(com.illumon.iris.db.plot.Figure) this CategoryDataSeries3D

Overload 4

Note: Java generics information - <NUMBER extends java.lang.Number>

param factors

java.util.function.Function<java.lang.Comparable,NUMBER>

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

pointsVisible(*args)

Sets whether points are visible.

Overload 1
param visible

java.lang.Boolean

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param visible

java.lang.Boolean

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

range(min, max)

Sets the range of this Axis to [min, max] inclusive.

Parameters
  • min – double

  • max – double

Returns

(com.illumon.iris.db.plot.Figure) this Axis

removeChart(*args)

Removes a chart from the Figure’s grid.

Overload 1
param index

int

return

(com.illumon.iris.db.plot.Figure) this Figure with the chart removed.

Overload 2
param rowNum

int

param colNum

int

return

(com.illumon.iris.db.plot.Figure) this Figure with the chart removed.

rowSpan(n)

Sets the size of this Chart within the grid of the figure.

Parameters

n – int

Returns

(com.illumon.iris.db.plot.Figure) this Chart

save(*args)

Saves the Figure as an image.

Overload 1
param saveLocation

java.lang.String

return

(com.illumon.iris.db.plot.Figure) figure

Overload 2
param saveLocation

java.lang.String

param width

int

param height

int

return

(com.illumon.iris.db.plot.Figure) figure

Overload 3
param saveLocation

java.lang.String

param wait

boolean

param timeoutSeconds

long

return

(com.illumon.iris.db.plot.Figure) figure

Overload 4
param saveLocation

java.lang.String

param width

int

param height

int

param wait

boolean

param timeoutSeconds

long

return

(com.illumon.iris.db.plot.Figure) figure

series(*args)

Gets a data series.

Overload 1
param id

int

return

(com.illumon.iris.db.plot.Figure) selected data series.

Overload 2
param name

java.lang.Comparable

return

(com.illumon.iris.db.plot.Figure) selected data series.

seriesColor(*args)

Defines the default line and point color.

Overload 1
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param color

com.illumon.iris.gui.color.Paint

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 3
param color

int

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 4
param color

int

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

Overload 5
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 6
param color

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

seriesNamingFunction(namingFunction)
Defines the procedure to name a generated series.

The input of the naming function is the table map key corresponding to the new series.

Overload 1
param namingFunction

groovy.lang.Closure<java.lang.String>

return

com.illumon.iris.db.plot.Figure

Overload 2
param namingFunction

java.util.function.Function<java.lang.Object,java.lang.String>

return

com.illumon.iris.db.plot.Figure

setValidGroups(groups)

Set the list of user ids which should have access to this figure wrapper object :param groups: None, single user id string, or list of user id strings

show()

Wraps the figure in a figure widget for display :return: FigureWrapper with figure attribute set to applicable widget

span(rowSpan, colSpan)

Sets the size of this Chart within the grid of the figure.

Parameters
  • rowSpan – int

  • colSpan – int

Returns

(com.illumon.iris.db.plot.Figure) this Chart

theme(theme)

Sets the Theme of this Figure

Overload 1
param theme

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Figure

Overload 2
param theme

com.illumon.iris.db.plot.Theme

return

(com.illumon.iris.db.plot.Figure) this Figure

tickLabelAngle(angle)

Sets the angle the tick labels of this Axis are drawn at.

Parameters

angle – double

Returns

(com.illumon.iris.db.plot.Figure) this Axis

ticks(*args)

Sets the tick locations.

Overload 1
param tickLocations

double[]

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param gapBetweenTicks

double

return

(com.illumon.iris.db.plot.Figure) this Axis

ticksFont(*args)

Sets the font for this Axis’s ticks.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

ticksVisible(visible)

Sets whether ticks are drawn on this Axis.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axis

toolTipPattern(*args)

Sets the tooltip format.

Overload 1
param format

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param format

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

transform(transform)

Sets the AxisTransform for this Axis.

Parameters

transform – com.illumon.iris.db.plot.axistransformations.AxisTransform

Returns

(com.illumon.iris.db.plot.Figure) this Axis

twin(*args)
Creates a new Axes instance which shares the same Axis

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

Overload 1
return

(com.illumon.iris.db.plot.Figure) the new Axes instance. The axes name will be equal to the string representation of the axes id.

Overload 2
param name

java.lang.String

return

(com.illumon.iris.db.plot.Figure) the new Axes instance

Overload 3
param dim

int

return

(com.illumon.iris.db.plot.Figure) the new Axes instance. The axes name will be equal to the string representation of the axes id.

Overload 4
param name

java.lang.String

param dim

int

return

(com.illumon.iris.db.plot.Figure) the new Axes instance

twinX(*args)
Creates a new Axes instance which shares the same x-Axis

as this Axes.

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

Overload 1
return

(com.illumon.iris.db.plot.Figure) the new Axes instance. The axes name will be equal to the string representation of the axes id.

Overload 2
param name

java.lang.String

return

(com.illumon.iris.db.plot.Figure) the new Axes instance

twinY(*args)
Creates a new Axes instance which shares the same y-Axis

as this Axes.

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

Overload 1
return

(com.illumon.iris.db.plot.Figure) the new Axes instance. The axes name will be equal to the string representation of the axes id.

Overload 2
param name

java.lang.String

return

(com.illumon.iris.db.plot.Figure) the new Axes instance

twinZ(*args)
Creates a new Axes instance which shares the same z-Axis

as this Axes.

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

Overload 1
return

(com.illumon.iris.db.plot.Figure) the new Axes instance. The axes name will be equal to the string representation of the axes id.

Overload 2
param name

java.lang.String

return

(com.illumon.iris.db.plot.Figure) the new Axes instance

updateInterval(updateIntervalMillis)

Sets the update interval of this Figure. The plot will be redrawn at this update interval.

Parameters

updateIntervalMillis – long

Returns

(com.illumon.iris.db.plot.Figure) this Figure

property validGroups

The collection, (actually java array), of valid users

property widget

The FigureWidget, if applicable. It will be None if .show() has NOT been called.

xAxis()

Gets the Axis representing the x-axis

Returns

(com.illumon.iris.db.plot.Figure) x-dimension Axis

xBusinessTime(*args)
Sets the AxisTransform of the x-Axis

as an AxisTransformBusinessCalendar.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axes using the default BusinessCalendar for the x-Axis.

Overload 2
param calendar

com.illumon.util.calendar.BusinessCalendar

return

(com.illumon.iris.db.plot.Figure) this Axes using the calendar for the x-Axis business calendar.

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) 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(color)

Sets the color of the x-Axis

Overload 1
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this Axes

xFormat(format)

Sets the AxisFormat of the x-Axis

Parameters

format – com.illumon.iris.db.plot.axisformatters.AxisFormat

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xFormatPattern(pattern)

Sets the format pattern of the x-Axis

Parameters

pattern – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xGridLinesVisible(visible)

Sets whether the Chart has grid lines in the x direction.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Chart

xInvert(*args)

Inverts the x-Axis so that larger values are closer to the origin.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param invert

boolean

return

(com.illumon.iris.db.plot.Figure) this Axes

xLabel(label)

Sets the label of the x-Axis

Parameters

label – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xLabelFont(*args)

Sets the font for the x-Axis label.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

xLog()

Sets the AxisTransform of the x-Axis to log base 10

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xMax(*args)

Sets the maximum of the x-Axis.

Overload 1
param max

double

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

xMin(*args)

Sets the minimum of the x-Axis.

Overload 1
param min

double

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

xMinorTicks(count)
Sets the number of minor ticks between consecutive major ticks

in the x-Axis. These minor ticks are equally spaced.

Parameters

count – int

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xMinorTicksVisible(visible)

Sets whether the x-Axis minor ticks are visible.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xRange(min, max)

Sets the range of the x-Axis

Parameters
  • min – double

  • max – double

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xTickLabelAngle(angle)

Sets the angle the tick labels the x-Axis are drawn at.

Parameters

angle – double

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xTicks(*args)

Sets the x-Axis ticks.

Overload 1
param tickLocations

double[]

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param gapBetweenTicks

double

return

(com.illumon.iris.db.plot.Figure) this Axes

xTicksFont(*args)

Sets the font for the x-Axis ticks.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

xTicksVisible(visible)

Sets whether the x-Axis ticks are visible.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axes

xToolTipPattern(*args)

Sets the x-value tooltip format.

Overload 1
param format

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param format

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

xTransform(transform)

Sets the AxisTransform of the x-Axis

Parameters

transform – com.illumon.iris.db.plot.axistransformations.AxisTransform

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yAxis()

Gets the Axis representing the y-axis

Returns

(com.illumon.iris.db.plot.Figure) y-dimension Axis

yBusinessTime(*args)
Sets the AxisTransform of the y-Axis

as an AxisTransformBusinessCalendar.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axes using the default BusinessCalendar for the y-Axis.

Overload 2
param calendar

com.illumon.util.calendar.BusinessCalendar

return

(com.illumon.iris.db.plot.Figure) this Axes using the calendar for the y-Axis business calendar.

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) 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(color)

Sets the color of the y-Axis

Overload 1
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this Axes

yFormat(format)

Sets the AxisFormat of the y-Axis

Parameters

format – com.illumon.iris.db.plot.axisformatters.AxisFormat

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yFormatPattern(pattern)

Sets the format pattern of the y-Axis

Parameters

pattern – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yGridLinesVisible(visible)

Sets whether the Chart has grid lines in the y direction

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Chart

yInvert(*args)

Inverts the y-Axis so that larger values are closer to the origin.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param invert

boolean

return

(com.illumon.iris.db.plot.Figure) this Axes

yLabel(label)

Sets the label of the y-Axis

Parameters

label – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yLabelFont(*args)

Sets the font for the y-Axis label.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

yLog()

Sets the AxisTransform of the y-Axis to log base 10

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yMax(*args)

Sets the maximum of the y-Axis.

Overload 1
param max

double

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

yMin(*args)

Sets the minimum of the y-Axis.

Overload 1
param min

double

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

yMinorTicks(count)
Sets the number of minor ticks between consecutive major ticks

in the y-Axis. These minor ticks are equally spaced.

Parameters

count – int

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yMinorTicksVisible(visible)

Sets whether the y-Axis minor ticks are visible.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yRange(min, max)

Sets the range of the y-Axis

Parameters
  • min – double

  • max – double

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yTickLabelAngle(angle)

Sets the angle the tick labels the y-Axis are drawn at.

Parameters

angle – double

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yTicks(*args)

Sets the y-Axis ticks.

Overload 1
param tickLocations

double[]

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param gapBetweenTicks

double

return

(com.illumon.iris.db.plot.Figure) this Axes

yTicksFont(*args)

Sets the font for the y-Axis ticks.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

yTicksVisible(visible)

Sets whether the y-Axis ticks are visible.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axes

yToolTipPattern(*args)

Sets the y-value tooltip format.

Overload 1
param format

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param format

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

yTransform(transform)

Sets the AxisTransform of the y-Axis

Parameters

transform – com.illumon.iris.db.plot.axistransformations.AxisTransform

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zAxis()

Gets the Axis representing the z-axis

Returns

(com.illumon.iris.db.plot.Figure) z-dimension Axis

zBusinessTime(*args)
Sets the AxisTransform of the z-Axis

as an AxisTransformBusinessCalendar.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axes using the default BusinessCalendar for the z-Axis.

Overload 2
param calendar

com.illumon.util.calendar.BusinessCalendar

return

(com.illumon.iris.db.plot.Figure) this Axes using the calendar for the z-Axis business calendar.

Overload 3
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes using the business calendar from row 0 of the filtered sds for the z-Axis business calendar. If no value is found, no transform will be applied.

zColor(color)

Sets the color of the z-Axis

Overload 1
param color

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param color

com.illumon.iris.gui.color.Paint

return

(com.illumon.iris.db.plot.Figure) this Axes

zFormat(format)

Sets the AxisFormat of the z-Axis

Parameters

format – com.illumon.iris.db.plot.axisformatters.AxisFormat

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zFormatPattern(pattern)

Sets the format pattern of the z-Axis

Parameters

pattern – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zInvert(*args)

Inverts the z-Axis so that larger values are closer to the origin.

Overload 1
return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param invert

boolean

return

(com.illumon.iris.db.plot.Figure) this Axes

zLabel(label)

Sets the label of the z-Axis

Parameters

label – java.lang.String

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zLabelFont(*args)

Sets the font for the z-Axis label.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

zLog()

Sets the AxisTransform of the z-Axis to log base 10

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zMax(*args)

Sets the maximum of the z-Axis.

Overload 1
param max

double

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

zMin(*args)

Sets the minimum of the z-Axis.

Overload 1
param min

double

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param sds

com.illumon.iris.db.plot.filters.SelectableDataSet

param valueColumn

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this Axes

zMinorTicks(count)
Sets the number of minor ticks between consecutive major ticks

in the z-Axis. These minor ticks are equally spaced.

Parameters

count – int

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zMinorTicksVisible(visible)

Sets whether the z-Axis minor ticks are visible.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zRange(min, max)

Sets the range of the z-Axis

Parameters
  • min – double

  • max – double

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zTickLabelAngle(angle)

Sets the angle the tick labels the z-Axis are drawn at.

Parameters

angle – double

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zTicks(*args)

Sets the z-Axis ticks.

Overload 1
param tickLocations

double[]

return

(com.illumon.iris.db.plot.Figure) this Axes

Overload 2
param gapBetweenTicks

double

return

(com.illumon.iris.db.plot.Figure) this Axes

zTicksFont(*args)

Sets the font for the z-Axis ticks.

Overload 1
param font

com.illumon.iris.db.plot.Font

return

(com.illumon.iris.db.plot.Figure) this Axis

Overload 2
param family

java.lang.String

param style

java.lang.String

param size

int

return

(com.illumon.iris.db.plot.Figure) this Axis

zTicksVisible(visible)

Sets whether the z-Axis ticks are visible.

Parameters

visible – boolean

Returns

(com.illumon.iris.db.plot.Figure) this Axes

zToolTipPattern(*args)

Sets the z-value tooltip format.

Overload 1
param format

java.lang.String

return

(com.illumon.iris.db.plot.Figure) this data series.

Overload 2
param format

java.lang.String

param keys

java.lang.Object…

return

com.illumon.iris.db.plot.Figure

zTransform(transform)

Sets the AxisTransform of the z-Axis

Parameters

transform – com.illumon.iris.db.plot.axistransformations.AxisTransform

Returns

(com.illumon.iris.db.plot.Figure) this Axes