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

@JsType(name="AxisType", namespace="dh.plot") @TsTypeDef(tsType="number") public class JsAxisType extends Object
A numeric enum indicating the role of an axis within a chart.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final int
    Indicates that this axis is used to represent that items when drawn as a point may have a specific color
    static final int
    Indicates that this axis is used to represent that items when drawn as a point may have label specified from the underlying data
    static final int
    Indicates that this axis is used to represent that items when drawn as a point may have a specialized shape
    static final int
    Indicates that this axis is used to represent that items when drawn as a point may have a specific size
    static final int
    Indicates that this is an X-axis, typically drawn on the bottom or top of the chart, depending on position attribute
    static final int
    Indicates that this is a Y-Axis, typically drawn on the left or right of the chart, depending on position attribute
  • 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
      Indicates that this is an X-axis, typically drawn on the bottom or top of the chart, depending on position attribute
    • Y

      public static final int Y
      Indicates that this is a Y-Axis, typically drawn on the left or right of the chart, depending on position attribute
    • SHAPE

      public static final int SHAPE
      Indicates that this axis is used to represent that items when drawn as a point may have a specialized shape
    • SIZE

      public static final int SIZE
      Indicates that this axis is used to represent that items when drawn as a point may have a specific size
    • LABEL

      public static final int LABEL
      Indicates that this axis is used to represent that items when drawn as a point may have label specified from the underlying data
    • COLOR

      public static final int COLOR
      Indicates that this axis is used to represent that items when drawn as a point may have a specific color
  • Constructor Details

    • JsAxisType

      public JsAxisType()