Class JsSourceType

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

@JsType(name="SourceType", namespace="dh.plot") @TsTypeDef(tsType="number") public class JsSourceType extends Object
This enum describes the source it is in, and how this aspect of the data in the series should be used to render the item. For example, a point in a error-bar plot might have a X value, three Y values (Y, Y_LOW, Y_HIGH), and some COLOR per item - the three SeriesDataSources all would share the same Axis instance, but would have different SourceType enums set. The exact meaning of each source type will depend on the series that they are in.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    OHLC
    static final int
     
    static final int
    OHLC
    static final int
     
    static final int
     
    static final int
    OHLC
    static final int
    OHLC
    static final int
     
    static final int
     
    static final int
     
    static final int
     
    static final int
    OHLC
    static final int
    LINE, AREA, STACKED_LINE, STACKED_AREA, ERROR_BAR, HISTOGRAM, SCATTER, STEP.
    static final int
    ERROR_BAR, HISTOGRAM
    static final int
    ERROR_BAR, HISTOGRAM
    static final int
    LINE, AREA, STACKED_LINE, STACKED_AREA, ERROR_BAR, HISTOGRAM, SCATTER, STEP.
    static final int
    ERROR_BAR, HISTOGRAM
    static final int
    ERROR_BAR, HISTOGRAM
    static final int
    STACKED_AREA, SCATTER
  • 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

    • X

      public static final int X
      LINE, AREA, STACKED_LINE, STACKED_AREA, ERROR_BAR, HISTOGRAM, SCATTER, STEP. Also used in PIE, but only to identify the correct axis.
    • Y

      public static final int Y
      LINE, AREA, STACKED_LINE, STACKED_AREA, ERROR_BAR, HISTOGRAM, SCATTER, STEP. Also used in PIE, but only to identify the correct axis.
    • Z

      public static final int Z
      STACKED_AREA, SCATTER
    • X_LOW

      public static final int X_LOW
      ERROR_BAR, HISTOGRAM
    • X_HIGH

      public static final int X_HIGH
      ERROR_BAR, HISTOGRAM
    • Y_LOW

      public static final int Y_LOW
      ERROR_BAR, HISTOGRAM
    • Y_HIGH

      public static final int Y_HIGH
      ERROR_BAR, HISTOGRAM
    • TIME

      public static final int TIME
      OHLC
    • OPEN

      public static final int OPEN
      OHLC
    • HIGH

      public static final int HIGH
      OHLC
    • LOW

      public static final int LOW
      OHLC
    • CLOSE

      public static final int CLOSE
      OHLC
    • SHAPE

      public static final int SHAPE
    • SIZE

      public static final int SIZE
    • LABEL

      public static final int LABEL
    • COLOR

      public static final int COLOR
    • PARENT

      public static final int PARENT
    • TEXT

      public static final int TEXT
    • HOVER_TEXT

      public static final int HOVER_TEXT
  • Constructor Details

    • JsSourceType

      public JsSourceType()