[]
Represents a collection of sparkline groups.
public interface ISparklineGroups : IEnumerable
Gets the number of sparkline groups in the associated IRange object (read-only).
int Count { get; }
Returns the ISparklineGroup object from a collection.
ISparklineGroup this[int index] { get; }
index intSpecifies the position of an element in the collection.
Returns ISparklineGroup
Creates a new sparkline group and returns an ISparklineGroup object.
ISparklineGroup Add(SparkType type, string sourceData)
type SparkTypeThe type of sparkline.
sourceData stringRepresents the range to use to create the sparkline.
Returns ISparklineGroup.
Clears the selected sparklines.
void Clear()
Clears the selected sparkline groups.
void ClearGroups()
Groups the selected sparklines.
void Group(IRange Location = null)
Location IRangeThe range the sparkline group is based on. If it is null (Nothing in Visual Basic), it is based on the first sparkline in groups.
Ungroups the sparklines in the selected sparkline group.
void Ungroup()