com.googlecode.wickedcharts.highcharts.options
Enum SeriesType

java.lang.Object
  extended by java.lang.Enum<SeriesType>
      extended by com.googlecode.wickedcharts.highcharts.options.SeriesType
All Implemented Interfaces:
LowercaseEnum, Serializable, Comparable<SeriesType>

public enum SeriesType
extends Enum<SeriesType>
implements LowercaseEnum

Enumeration of the possible types of charts. The data contained in a series will be displayed as one of these types-

Author:
Tom Hombergs (tom.hombergs@gmail.com)
See Also:
http://api.highcharts.com/highcharts#series.type

Enum Constant Summary
AREA
           
AREARANGE
           
AREASPLINE
           
BAR
           
COLUMN
           
COLUMNRANGE
           
GAUGE
           
LINE
           
PIE
           
SCATTER
           
SPLINE
           
 
Method Summary
 ChartType getChartType()
           
 void setChartType(ChartType chartType)
           
static SeriesType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SeriesType[] 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, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

AREA

public static final SeriesType AREA

AREASPLINE

public static final SeriesType AREASPLINE

BAR

public static final SeriesType BAR

COLUMN

public static final SeriesType COLUMN

LINE

public static final SeriesType LINE

PIE

public static final SeriesType PIE

SCATTER

public static final SeriesType SCATTER

SPLINE

public static final SeriesType SPLINE

GAUGE

public static final SeriesType GAUGE

COLUMNRANGE

public static final SeriesType COLUMNRANGE

AREARANGE

public static final SeriesType AREARANGE
Method Detail

values

public static SeriesType[] 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 (SeriesType c : SeriesType.values())
    System.out.println(c);

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

valueOf

public static SeriesType 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

setChartType

public void setChartType(ChartType chartType)

getChartType

public ChartType getChartType()


Copyright © 2013. All Rights Reserved.