[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparkAxes.Vertical

Vertical Property

Vertical

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.

Declaration
ISparkVerticalAxis Vertical { get; }
ReadOnly Property Vertical As ISparkVerticalAxis
Examples
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;