[]
Serializable, Comparable<EndStyleCap>, ConstableUse this enum with IErrorBar.setEndStyle(EndStyleCap) to control whether an error bar is drawn with a cap at its end.
worksheet.getRange("A1:B4").setValue(new Object[][] {
{55, 964}, {20, 825}, {77, 840}
});
IShape shape = worksheet.getShapes().addChart(ChartType.XYScatter, 250, 20, 360, 230);
shape.getChart().getSeriesCollection().add(worksheet.getRange("A1:B4"), RowCol.Columns);
ISeries series = shape.getChart().getSeriesCollection().get(0);
series.setHasErrorBars(true);
series.getYErrorBar().setEndStyle(EndStyleCap.NoCap);
Enum.EnumDesc<E extends Enum<E>>static EndStyleCapstatic EndStyleCap[]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