[]
Represents a group of sparklines.
public interface ISparklineGroup : IEnumerable
Gets the associated ISparkAxes.
ISparkAxes Axes { get; }
Gets the number of sparklines in the sparkline group.
int Count { get; }
Gets or sets the date range for the sparkline group.
string DateRange { get; set; }
Gets or sets the way that blank cells are plotted on a chart.
DisplayBlanksAs DisplayBlanksAs { get; set; }
Specifies whether hidden cells are plotted in the sparkline group.
bool DisplayHidden { get; set; }
Gets the ISparkline object.
ISparkline this[int index] { get; }
index
intIndex value of the sparkline.
Returns ISparkline
Gets or sets the thickness of the sparklines in the sparkline group.
double LineWeight { get; set; }
Gets or sets the IRange object that represents the location of the sparkline group.
IRange Location { get; set; }
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; }
Gets the position of the specified node as a coordinate pair. Each coordinate is expressed in points.
ISparkPoints Points { get; }
Gets the IFormatColor object that represents the main series color for the sparkline group.
IFormatColor SeriesColor { get; }
Gets or sets the range that contains the source data for the sparkline group.
string SourceData { get; set; }
Gets or sets the type of sparkline for the group.
SparkType Type { get; set; }
Deletes the sparkline group.
void Delete()
Generate sparkline group from json string.
void FromJson(string json)
json
stringThe JSON string representing the sparkline group.
Generate json string from sparkline group.
string ToJson()
The JSON string representing the sparkline group.