[]
Gets the ISparkVerticalAxis object associated with this ISparkAxes object.
Use the returned ISparkVerticalAxis object to access or modify the vertical axis settings for the sparkline group.
ISparkVerticalAxis Vertical { get; }
ReadOnly Property Vertical As ISparkVerticalAxis
worksheet.Range["A1:A4"].Value = new object[,] {{2}, {5}, {3}, {7}};
ISparklineGroup group = worksheet.Range["B1"].SparklineGroups.Add(SparkType.Line, "A1:A4");
ISparkVerticalAxis verticalAxis = group.Axes.Vertical;
verticalAxis.MaxScaleType = SparkScale.SparkScaleGroup;