[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparkPoints.Lowpoint

Lowpoint Property

Lowpoint

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

Use the returned object to control whether the lowest-point marker is displayed and to customize its color.

Declaration
ISparkColor Lowpoint { get; }
ReadOnly Property Lowpoint 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 lowpoint = group.Points.Lowpoint;
lowpoint.Visible = true;
lowpoint.Color.Color = Color.Red;