[]
Serializable, Comparable<RowCol>, ConstableUsed when adding data series to a chart's ISeriesCollection to indicate the orientation of the source data range.
worksheet.getRange("A1:D3").setValue(new Object[][] {
{null, "S1", "S2", "S3"},
{"Item1", 10, 25, 30},
{"Item2", 20, 35, 40}
});
IShape shape = worksheet.getShapes().addChart(ChartType.ColumnClustered, 200, 30, 300, 300);
shape.getChart().getSeriesCollection().add(worksheet.getRange("A1:D3"), RowCol.Columns, true, true);
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