Class ChartArray

java.lang.Object
io.deephaven.plot.ChartArray
All Implemented Interfaces:
Serializable

public class ChartArray extends Object implements Serializable
A grid of charts.
See Also:
  • Method Details

    • getCharts

      public List<ChartImpl> getCharts()
      Gets the Charts in this ChartArray.
      Returns:
      list of Charts in this ChartArray
    • getIndex

      public int getIndex(int row, int col)
      Gets the index of the Chart at the specified location in this array.
      Parameters:
      row - row of the Chart
      col - column of the Chart
      Returns:
      index of the Chart at the specified location in this array.
    • isEmpty

      public static boolean isEmpty(int index)
      Whether the index indicates that there is no Chart in that location.
      Parameters:
      index - index of the Chart
      Returns:
      Whether the index indicates that there is no Chart in that location
    • getChart

      public ChartImpl getChart(int row, int col)
      Gets the Chart at the specified location in this array.
      Parameters:
      row - row of the Chart
      col - column of the Chart
      Returns:
      the Chart at the specified location in this array.