org.moxieapps.gwt.highcharts.client
Enum Series.Type

java.lang.Object
  extended by java.lang.Enum<Series.Type>
      extended by org.moxieapps.gwt.highcharts.client.Series.Type
All Implemented Interfaces:
Serializable, Comparable<Series.Type>
Enclosing class:
Series

public static enum Series.Type
extends Enum<Series.Type>

An enumeration of supported series types, which can be passed to methods such as Series.setType(org.moxieapps.gwt.highcharts.client.Series.Type) or BaseChart.setType(org.moxieapps.gwt.highcharts.client.Series.Type).


Enum Constant Summary
AREA
          Show the series as an area filled in beneath a non-curved line
AREA_RANGE
          Show the series as an area filled between two non-curved lines.
AREA_SPLINE
          Show the series as an area filled in beneath a curved line
AREA_SPLINE_RANGE
          Show the series as an area filled between two curved lines.
BAR
          Show the series as horizontal bars
BOXPLOT
          Show the series as a box plot
BUBBLE
          Show the series as bubbles
CANDLESTICK
          Show the series as a sequence of candlesticks, where each candlestick represents four values.
COLUMN
          Show the series as vertical bars
COLUMN_RANGE
          Show the series as vertical bars each designating a low to high range.
ERRORBAR
          Shows the Series as an Error bar
FLAGS
          Show the series as flags
FUNNEL
          Show the series as a funnel
GAUGE
           
HEATMAP
           
LINE
          Show the series as a sequence of connected straight lines
OHLC
          Show the series as a sequence of bars that show the open, high, low, and close values.
PIE
          Show the series as a pie chart
PYRAMID
          Show the series as a pyramid
SCATTER
          Show the series as a scatter plot
SOLID_GAUGE
          Show the series as a solid gauge
SPLINE
          Show the series as a sequence of lines that are rendered as a spline to appear as a smooth curve
TREEMAP
          Show the series as a treemap
WATERFALL
          Show the series as a waterfall
 
Method Summary
 String toString()
           
static Series.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Series.Type[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AREA

public static final Series.Type AREA
Show the series as an area filled in beneath a non-curved line


AREA_RANGE

public static final Series.Type AREA_RANGE
Show the series as an area filled between two non-curved lines.

Only available if the highcharts-more.js script is included in your GWT module.

Since:
1.5.0

AREA_SPLINE

public static final Series.Type AREA_SPLINE
Show the series as an area filled in beneath a curved line


AREA_SPLINE_RANGE

public static final Series.Type AREA_SPLINE_RANGE
Show the series as an area filled between two curved lines.

Only available if the highcharts-more.js script is included in your GWT module.

Since:
1.5.0

BAR

public static final Series.Type BAR
Show the series as horizontal bars


BOXPLOT

public static final Series.Type BOXPLOT
Show the series as a box plot

Since:
1.6.0

BUBBLE

public static final Series.Type BUBBLE
Show the series as bubbles

Since:
1.6.0

COLUMN

public static final Series.Type COLUMN
Show the series as vertical bars


COLUMN_RANGE

public static final Series.Type COLUMN_RANGE
Show the series as vertical bars each designating a low to high range.

Only available if the highcharts-more.js script is included in your GWT module.


ERRORBAR

public static final Series.Type ERRORBAR
Shows the Series as an Error bar

Since:
1.6.0

FLAGS

public static final Series.Type FLAGS
Show the series as flags

Since:
1.6.0

FUNNEL

public static final Series.Type FUNNEL
Show the series as a funnel

Only available if the highcharts-more.js script is included in your GWT module.

Since:
1.6.0

HEATMAP

public static final Series.Type HEATMAP
Since:
1.7.0 Show the series as a heatmap

GAUGE

public static final Series.Type GAUGE
Since:
1.6.0 Show the series as a gauge

LINE

public static final Series.Type LINE
Show the series as a sequence of connected straight lines


PIE

public static final Series.Type PIE
Show the series as a pie chart


PYRAMID

public static final Series.Type PYRAMID
Show the series as a pyramid


SCATTER

public static final Series.Type SCATTER
Show the series as a scatter plot


SOLID_GAUGE

public static final Series.Type SOLID_GAUGE
Show the series as a solid gauge

Since:
1.7.0

SPLINE

public static final Series.Type SPLINE
Show the series as a sequence of lines that are rendered as a spline to appear as a smooth curve


TREEMAP

public static final Series.Type TREEMAP
Show the series as a treemap

Since:
1.7.0

WATERFALL

public static final Series.Type WATERFALL
Show the series as a waterfall

Since:
1.6.0

OHLC

public static final Series.Type OHLC
Show the series as a sequence of bars that show the open, high, low, and close values. Only available when you're using the StockChart widget type.

Since:
1.1.0

CANDLESTICK

public static final Series.Type CANDLESTICK
Show the series as a sequence of candlesticks, where each candlestick represents four values. Only available when you're using the StockChart widget type.

Since:
1.1.0
Method Detail

values

public static Series.Type[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (Series.Type c : Series.Type.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Series.Type valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified name
NullPointerException - if the argument is null

toString

public String toString()
Overrides:
toString in class Enum<Series.Type>


Copyright © 2015. All Rights Reserved.