Represents a collection of sparkline groups.
Remarks
The SparklineGroups object can contain multiple SparklineGroup objects.
Use the SparklineGroups property of the Range object to return an existing SparklineGroups collection from its parent range.
Use the Add method to create a group of new sparklines.
Use the Group method to create a group of existing sparklines.
Example
This example selects the range A1:A4 and groups the sparklines in that range. If the sparklines in the sparkline group are line sparklines, the markers are displayed in red.
Range("A1:A4").Select
Selection.SparklineGroups.Group Location := Range("A1")
Selection.SparklineGroups.Item(1).Points.Markers.Visible = True
Selection.SparklineGroups.Item(1).Points.Markers.Color.Color = 255