[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ISparklineGroup

Interface ISparklineGroup

Namespace
GrapeCity.Documents.Excel
Assembly
GcDocs.Excel.dll

Represents a group of sparklines.

public interface ISparklineGroup : IEnumerable
Inherited Members
System.Collections.IEnumerable.GetEnumerator()

Properties

Axes

Gets the associated ISparkAxes.

ISparkAxes Axes { get; }

Property Value

ISparkAxes

Count

Gets the number of sparklines in the sparkline group.

int Count { get; }

Property Value

int

DateRange

Gets or sets the date range for the sparkline group.

string DateRange { get; set; }

Property Value

string

DisplayBlanksAs

Gets or sets the way that blank cells are plotted on a chart.

DisplayBlanksAs DisplayBlanksAs { get; set; }

Property Value

DisplayBlanksAs

DisplayHidden

Specifies whether hidden cells are plotted in the sparkline group.

bool DisplayHidden { get; set; }

Property Value

bool

this[int]

Gets the ISparkline object.

ISparkline this[int index] { get; }

Parameters

index int

Index value of the sparkline.

Property Value

ISparkline

Returns ISparkline

LineWeight

Gets or sets the thickness of the sparklines in the sparkline group.

double LineWeight { get; set; }

Property Value

double

Location

Gets or sets the IRange object that represents the location of the sparkline group.

IRange Location { get; set; }

Property Value

IRange

PlotBy

Gets or sets how to plot the sparkline when the data on which it is based is in a square-shaped range.

SparklineRowCol PlotBy { get; set; }

Property Value

SparklineRowCol

Points

Gets the position of the specified node as a coordinate pair. Each coordinate is expressed in points.

ISparkPoints Points { get; }

Property Value

ISparkPoints

SeriesColor

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

IFormatColor SeriesColor { get; }

Property Value

IFormatColor

SourceData

Gets or sets the range that contains the source data for the sparkline group.

string SourceData { get; set; }

Property Value

string

Type

Gets or sets the type of sparkline for the group.

SparkType Type { get; set; }

Property Value

SparkType

Methods

Delete()

Deletes the sparkline group.

void Delete()

FromJson(string)

Generate sparkline group from json string.

void FromJson(string json)

Parameters

json string

The JSON string representing the sparkline group.

ToJson()

Generate json string from sparkline group.

string ToJson()

Returns

string

The JSON string representing the sparkline group.