Enum Class ChartType

java.lang.Object
java.lang.Enum<ChartType>
eu.hansolo.fx.charts.ChartType
All Implemented Interfaces:
Serializable, Comparable<ChartType>, Constable

public enum ChartType extends Enum<ChartType>
  • Enum Constant Details

    • SCATTER

      public static final ChartType SCATTER
    • POINCARE

      public static final ChartType POINCARE
    • LINE

      public static final ChartType LINE
    • SMOOTH_LINE

      public static final ChartType SMOOTH_LINE
    • AREA

      public static final ChartType AREA
    • SMOOTH_AREA

      public static final ChartType SMOOTH_AREA
    • BAR

      public static final ChartType BAR
    • BUBBLE

      public static final ChartType BUBBLE
    • DONUT

      public static final ChartType DONUT
    • RADAR_POLYGON

      public static final ChartType RADAR_POLYGON
    • SMOOTH_RADAR_POLYGON

      public static final ChartType SMOOTH_RADAR_POLYGON
    • RADAR_SECTOR

      public static final ChartType RADAR_SECTOR
    • POLAR

      public static final ChartType POLAR
    • SMOOTH_POLAR

      public static final ChartType SMOOTH_POLAR
    • HORIZON

      public static final ChartType HORIZON
    • SMOOTHED_HORIZON

      public static final ChartType SMOOTHED_HORIZON
    • MATRIX_HEATMAP

      public static final ChartType MATRIX_HEATMAP
    • LINE_DELTA

      public static final ChartType LINE_DELTA
    • SMOOTH_LINE_DELTA

      public static final ChartType SMOOTH_LINE_DELTA
    • NESTED_BAR

      public static final ChartType NESTED_BAR
    • PARALLEL_COORDINATES

      public static final ChartType PARALLEL_COORDINATES
    • RIDGE_LINE

      public static final ChartType RIDGE_LINE
    • MULTI_TIME_SERIES

      public static final ChartType MULTI_TIME_SERIES
    • SMOOTHED_MULTI_TIME_SERIES

      public static final ChartType SMOOTHED_MULTI_TIME_SERIES
    • PANEL_BAR_CHART

      public static final ChartType PANEL_BAR_CHART
  • Method Details

    • values

      public static ChartType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ChartType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null