[]
Serializable, Comparable<ParentDataLabelOptions>, ConstableUse this enumeration with ISeries.setParentDataLabelOption(ParentDataLabelOptions) to control how parent data labels are displayed for the series.
worksheet.getRange("A1:B4").setValue(new Object[][] {
{"Category", "Value"},
{"A", 100},
{"B", 80},
{"C", 60}
});
IShape shape = worksheet.getShapes().addChart(ChartType.ColumnClustered, 20, 20, 300, 200);
shape.getChart().getSeriesCollection().add(worksheet.getRange("A1:B4"), RowCol.Columns, true, true);
ISeries series = shape.getChart().getSeriesCollection().get(0);
series.setParentDataLabelOption(ParentDataLabelOptions.Banner);
Enum.EnumDesc<E extends Enum<E>>static ParentDataLabelOptionsstatic ParentDataLabelOptions[]values()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