A collection of s exposed from a

Inheritance

Implements
  • IEnumerable<SparklineGroup>
  • IEnumerable

Returns the total number of items in the collection.

public int Count { get; }

Determines if guids will be generated for groups.

public bool GenerateGuidsForGroups { get; set; }

Indexer

public SparklineGroup this[int index] { get; }

Add(SparklineType, string, string, Action<SparklineGroup>, CellReferenceMode?)

Section titled "Add(SparklineType, string, string, Action<SparklineGroup>, CellReferenceMode?)"

Adds a new

public SparklineGroup Add(SparklineType type, string locationRange, string dataRange, Action<SparklineGroup> groupInitializer = null, CellReferenceMode? cellReferenceMode = null)

Parameters

  • type: SparklineType
  • locationRange: string
  • dataRange: string
  • groupInitializer: Action
  • cellReferenceMode: CellReferenceMode?

Returns any

Clears all items from the collection

public void Clear()

Returns any

Returns true if the collection contains the item

public bool Contains(SparklineGroup group)

Parameters

  • group: SparklineGroup

Returns any

Returns an enumerator for the SparklineGroups in the collection.

public IEnumerator<SparklineGroup> GetEnumerator()

Returns any

Gets the index of the item in the collection

public int IndexOf(SparklineGroup group)

Parameters

  • group: SparklineGroup

Returns any

Removes a group from the collection

public bool Remove(SparklineGroup group)

Parameters

  • group: SparklineGroup

Returns any

Removes a group from the collection

public void RemoveAt(int index)

Parameters

  • index: int

Returns any