public static enum Series.Type extends Enum<Series.Type>
Series.setType(org.moxieapps.gwt.highcharts.client.Series.Type) or BaseChart.setType(org.moxieapps.gwt.highcharts.client.Series.Type).| Enum Constant and Description |
|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
public static final Series.Type AREA
public static final Series.Type AREA_RANGE
Only available if the highcharts-more.js script is included in your GWT module.
public static final Series.Type AREA_SPLINE
public static final Series.Type AREA_SPLINE_RANGE
Only available if the highcharts-more.js script is included in your GWT module.
public static final Series.Type BAR
public static final Series.Type BOXPLOT
public static final Series.Type BUBBLE
public static final Series.Type COLUMN
public static final Series.Type COLUMN_RANGE
Only available if the highcharts-more.js script is included in your GWT module.
public static final Series.Type ERRORBAR
public static final Series.Type FLAGS
public static final Series.Type FUNNEL
public static final Series.Type HEATMAP
public static final Series.Type GAUGE
public static final Series.Type LINE
public static final Series.Type PIE
public static final Series.Type PYRAMID
public static final Series.Type SCATTER
public static final Series.Type SOLID_GAUGE
public static final Series.Type SPLINE
public static final Series.Type TREEMAP
public static final Series.Type WATERFALL
public static final Series.Type OHLC
StockChart widget type.public static final Series.Type CANDLESTICK
StockChart widget type.public static Series.Type[] values()
for (Series.Type c : Series.Type.values()) System.out.println(c);
public static Series.Type valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<Series.Type>Copyright © 2015. All Rights Reserved.