[]
Serializable, Comparable<SparkScale>, ConstableUse this enum with the vertical axis settings of a sparkline group to control whether all sparklines share the same scale, each sparkline uses its own calculated scale, or a custom axis value is applied.
worksheet.getRange("A1:C3").setValue(new Object[][] {
{2, 4, 6}, {3, 9, 1}, {5, 7, 8}
});
ISparklineGroup group = worksheet.getRange("D1:D3").getSparklineGroups().add(SparkType.Line, "A1:C3");
group.getAxes().getVertical().setMinScaleType(SparkScale.SparkScaleGroup);
group.getAxes().getVertical().setMaxScaleType(SparkScale.SparkScaleCustom);
group.getAxes().getVertical().setCustomMaxScaleValue(10);
Enum.EnumDesc<E extends Enum<E>>static SparkScalestatic SparkScale[]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