public enum ChartGrouping extends Enum<ChartGrouping>
Enum Constant and Description |
---|
CLUSTERED
Chart series are drawn next to each other along the category axis.
|
PERCENT_STACKED
Chart series are drawn next to each other along the value axis and scaled to total 100%.
|
STACKED
Chart series are drawn next to each other on the value axis.
|
STANDARD
Chart series are drawn on the value axis.
|
Modifier and Type | Method and Description |
---|---|
static ChartGrouping |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChartGrouping[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChartGrouping CLUSTERED
ColumnChart
and BarChart
.public static final ChartGrouping PERCENT_STACKED
Chart series are drawn next to each other along the value axis and scaled to total 100%.
Use it to compare the percentage that each value contributes to a total across categories.
public static final ChartGrouping STACKED
Chart series are drawn next to each other on the value axis.
Use it to compare the contribution of each value to a total across categories.
public static final ChartGrouping STANDARD
ColumnChart
and BarChart
.public static ChartGrouping 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 ChartGrouping[] values()
for (ChartGrouping c : ChartGrouping.values()) System.out.println(c);
© GemBox d.o.o. — All rights reserved.