public enum ChartSplitType extends java.lang.Enum<ChartSplitType>
| Enum Constant and Description |
|---|
SplitByCustomSplit
Specifies that arbitrary slides are displayed in the second chart.
|
SplitByPercentValue
Specifies that the second chart displays values less than some percentage of the total value.The percentage is specified by the SplitValue property.
|
SplitByPosition
Specifies that the second chart displays the smallest values in the data series.
|
SplitByValue
Specifies that the second chart displays values less than the value specified by the SplitValue property.
|
| Modifier and Type | Method and Description |
|---|---|
static ChartSplitType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChartSplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartSplitType SplitByPosition
public static final ChartSplitType SplitByValue
public static final ChartSplitType SplitByPercentValue
public static final ChartSplitType SplitByCustomSplit
public static ChartSplitType[] values()
for (ChartSplitType c : ChartSplitType.values()) System.out.println(c);
public static ChartSplitType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null