[]
Serializable, Comparable<BarShape>, ConstableUse this enumeration with IChart.setBarShape(BarShape) or ISeries.setBarShape(BarShape) to control whether 3-D bars or columns are rendered as boxes, cylinders, cones, or pyramids.
worksheet.getRange("A1:B3").setValue(new Object[][] {
{"Name", "Value"},
{"A", 10},
{"B", 20}
});
IChart chart = worksheet.getShapes().addChart(ChartType.Column3D, 20, 20, 300, 200).getChart();
chart.getSeriesCollection().add(worksheet.getRange("A1:B3"), RowCol.Columns, true, true);
chart.setBarShape(BarShape.Cylinder);
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