public enum MarkerType extends Enum<MarkerType>
LineChartSeries
data point.Enum Constant and Description |
---|
AUTO
Specifies an automatic symbol shall be drawn at each data point.
|
CIRCLE
Specifies a circle shall be drawn at each data point.
|
DASH
Specifies a dash shall be drawn at each data point.
|
DIAMOND
Specifies a diamond shall be drawn at each data point.
|
DOT
Specifies a dot shall be drawn at each data point.
|
NONE
Specifies nothing shall be drawn at each data point.
|
PICTURE
Specifies a picture shall be drawn at each data point.
|
PLUS
Specifies a plus shall be drawn at each data point.
|
SQUARE
Specifies a square shall be drawn at each data point.
|
STAR
Specifies a star shall be drawn at each data point.
|
TRIANGLE
Specifies a triangle shall be drawn at each data point.
|
X
Specifies an X shall be drawn at each data point.
|
Modifier and Type | Method and Description |
---|---|
static MarkerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MarkerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MarkerType AUTO
public static final MarkerType CIRCLE
public static final MarkerType DASH
public static final MarkerType DIAMOND
public static final MarkerType DOT
public static final MarkerType NONE
public static final MarkerType PICTURE
public static final MarkerType PLUS
public static final MarkerType SQUARE
public static final MarkerType STAR
public static final MarkerType TRIANGLE
public static final MarkerType X
public static MarkerType 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 static MarkerType[] values()
for (MarkerType c : MarkerType.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.