[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparkPoints.Highpoint

Highpoint Property

Highpoint

Gets the ISparkColor object that represents the color and visibility of the marker for the highest point of data on a sparkline.

Use the returned object to configure whether the high-point marker is shown and which color it uses.

Declaration
ISparkColor Highpoint { get; }
ReadOnly Property Highpoint As ISparkColor
Examples
worksheet.Range["A1:A4"].Value = new object[,] {{5}, {2}, {7}, {3}};
ISparklineGroup group = worksheet.Range["B1"].SparklineGroups.Add(SparkType.Line, "A1:A4");
ISparkColor highpoint = group.Points.Highpoint;
highpoint.Visible = true;
highpoint.Color.Color = Color.Red;