[]
Serializable, Comparable<MarkerStyle>, Constable
worksheet.getRange("A1:B3").setValue(new Object[][] {
{"X", "Value"},
{1, 10},
{2, 20}
});
IChart chart = worksheet.getShapes().addChart(ChartType.LineMarkers, 20, 20, 300, 200).getChart();
chart.setSourceData(worksheet.getRange("A1:B3"));
chart.getSeriesCollection().get(0).setMarkerStyle(MarkerStyle.Diamond);
Enum.EnumDesc<E extends Enum<E>>static MarkerStylestatic MarkerStyle[]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