[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparklineGroup.SeriesColor

SeriesColor Property

SeriesColor

Gets the IFormatColor object that represents the main series color for the sparkline group.

Use the returned object to inspect or modify the color applied to the sparkline series.

Declaration
IFormatColor SeriesColor { get; }
ReadOnly Property SeriesColor As IFormatColor
Examples
worksheet.Range["A1:C1"].Value = new object[] {1, 3, 2};
ISparklineGroup group = worksheet.Range["D1"].SparklineGroups.Add(SparkType.Line, "A1:C1");
IFormatColor seriesColor = group.SeriesColor;
seriesColor.Color = Color.Blue;