[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparkPoints.Markers

Markers Property

Markers

Gets the ISparkColor object that represents the color and visibility of markers for positive points of data on a sparkline.

Use this object to configure how positive data points are displayed in the sparkline group.

Declaration
ISparkColor Markers { get; }
ReadOnly Property Markers As ISparkColor
Examples
worksheet.Range["A1:A4"].Value = new object[,] {
    {10},
    {-5},
    {8},
    {12}
};
ISparklineGroup group = worksheet.Range["B1"].SparklineGroups.Add(SparkType.Line, "A1:A4");
ISparkColor markers = group.Points.Markers;
markers.Color.RGB = Color.Blue;
markers.Visible = true;