Package io.deephaven.plot
Class ChartArray
java.lang.Object
io.deephaven.plot.ChartArray
- All Implemented Interfaces:
Serializable
A grid of charts.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetChart
(int row, int col) Gets theChart
at the specified location in this array.Gets theChart
s in this ChartArray.int
getIndex
(int row, int col) Gets the index of theChart
at the specified location in this array.static boolean
isEmpty
(int index) Whether the index indicates that there is noChart
in that location.
-
Method Details
-
getCharts
Gets theChart
s in this ChartArray.- Returns:
- list of
Chart
s in this ChartArray
-
getIndex
public int getIndex(int row, int col) Gets the index of theChart
at the specified location in this array. -
isEmpty
public static boolean isEmpty(int index) Whether the index indicates that there is noChart
in that location. -
getChart
Gets theChart
at the specified location in this array.
-