Class JsSeriesPlotStyle

java.lang.Object
io.deephaven.web.client.api.widget.plot.enums.JsSeriesPlotStyle

@JsType(name="SeriesPlotStyle", namespace="dh.plot") @TsTypeDef(tsType="number") public class JsSeriesPlotStyle extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Series items will be drawn as points connected by a line with a filled area under the line.
    static final int
    Series items should each be draw as bars.
    static final int
    Series items with 6 data sources, three on X and three on Y, to represent the low/mid/high of each item.
    static final int
    Series items with 6 data sources, three on X and three on Y, to represent the start/end/mid of each item.
    static final int
    Series items will be drawn as points connected by a line, with two NUMBER axes.
    static final int
    Stands for "Open/High/Low/Close" series.
    static final int
    Series items should each be draw as pie slices.
    static final int
    Series items will be individually drawn as points, one two or three NUMBER axes
    static final int
    Like AREA
    static final int
    Like BAR, except there may be more than one such series, and they will share axes, and each subsequent series should have its items drawn on top of the previous one.
    static final int
     
    static final int
     
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • BAR

      public static final int BAR
      Series items should each be draw as bars. Each item will have a unique category value to be drawn on the CATEGORY axis, and a numeric value drawn on the NUMBER axis.
    • STACKED_BAR

      public static final int STACKED_BAR
      Like BAR, except there may be more than one such series, and they will share axes, and each subsequent series should have its items drawn on top of the previous one.
    • LINE

      public static final int LINE
      Series items will be drawn as points connected by a line, with two NUMBER axes.
    • AREA

      public static final int AREA
      Series items will be drawn as points connected by a line with a filled area under the line.
    • STACKED_AREA

      public static final int STACKED_AREA
      Like AREA
    • PIE

      public static final int PIE
      Series items should each be draw as pie slices. Each item will have a unique category value to be drawn on the CATEGORY axis, and a numeric value drawn on the NUMBER axis.
    • HISTOGRAM

      public static final int HISTOGRAM
      Series items with 6 data sources, three on X and three on Y, to represent the start/end/mid of each item.
    • OHLC

      public static final int OHLC
      Stands for "Open/High/Low/Close" series. Five numeric data sources exist, four on one axis (OPEN, HIGH, LOW, CLOSE), and TIME on the other axis.
    • SCATTER

      public static final int SCATTER
      Series items will be individually drawn as points, one two or three NUMBER axes
    • STEP

      public static final int STEP
    • ERROR_BAR

      public static final int ERROR_BAR
      Series items with 6 data sources, three on X and three on Y, to represent the low/mid/high of each item.
    • TREEMAP

      public static final int TREEMAP
  • Constructor Details

    • JsSeriesPlotStyle

      public JsSeriesPlotStyle()