[]
Serializable, Comparable<AxisGroup>, ConstableUse this enum with chart APIs such as series and axes to select whether data is plotted on the primary axis group or the secondary axis group.
worksheet.getRange("A1:B3").setValue(new Object[][] {
{"Month", "Sales"},
{"Jan", 120},
{"Feb", 150}
});
IChart chart = worksheet.getShapes().addChart(ChartType.ColumnClustered, 20, 20, 300, 200).getChart();
chart.getSeriesCollection().add(worksheet.getRange("A1:B3"), RowCol.Columns, true, true);
chart.getSeriesCollection().get(0).setAxisGroup(AxisGroup.Secondary);
Enum.EnumDesc<E extends Enum<E>>name - the name of the enum constant to be returned.IllegalArgumentException - if this enum class has no constant with the specified nameNullPointerException - if the argument is null