Back to Devexpress

SparklineGroupCollection Interface

officefileapi-devexpress-dot-spreadsheet-dec00b65.md

latest3.5 KB
Original Source

SparklineGroupCollection Interface

A collection of the SparklineGroup objects in a worksheet.

Namespace : DevExpress.Spreadsheet

Assembly : DevExpress.Spreadsheet.v25.2.Core.dll

NuGet Package : DevExpress.Spreadsheet.Core

Declaration

csharp
public interface SparklineGroupCollection :
    ISimpleCollection<SparklineGroup>,
    IEnumerable<SparklineGroup>,
    IEnumerable,
    ICollection
vb
Public Interface SparklineGroupCollection
    Inherits ISimpleCollection(Of SparklineGroup),
             IEnumerable(Of SparklineGroup),
             IEnumerable,
             ICollection

The following members return SparklineGroupCollection objects:

Remarks

Use the Worksheet.SparklineGroups property to get access to the SparklineGroupCollection collection.

To create a new sparkline group and add it to a worksheet, use the SparklineGroupCollection.Add method.

For details on how to insert sparklines in a worksheet and adjust their settings, refer to the Sparklines section for examples.

Example

View Example

csharp
Worksheet worksheet = workbook.Worksheets["SparklineExamples"];
workbook.Worksheets.ActiveWorksheet = worksheet;

// Create a group of line sparklines.
SparklineGroup quarterlyGroup = worksheet.SparklineGroups.Add(worksheet["G4:G6"], worksheet["C4:F4,C5:F5,C6:F6"], SparklineGroupType.Line);
// Add one more sparkline to the existing group.
quarterlyGroup.Sparklines.Add(6, 6, worksheet["C7:F7"]);

// Display a column sparkline in the total cell.
SparklineGroup totalGroup = worksheet.SparklineGroups.Add(worksheet["G8"], worksheet["C8:F8"], SparklineGroupType.Column);
vb
Dim worksheet As Worksheet = workbook.Worksheets("SparklineExamples")
workbook.Worksheets.ActiveWorksheet = worksheet

' Create a group of line sparklines.
Dim quarterlyGroup As SparklineGroup = worksheet.SparklineGroups.Add(worksheet("G4:G6"), worksheet("C4:F4,C5:F5,C6:F6"), SparklineGroupType.Line)
' Add one more sparkline to the existing group.
quarterlyGroup.Sparklines.Add(6, 6, worksheet("C7:F7"))

' Display a column sparkline in the total cell.
Dim totalGroup As SparklineGroup = worksheet.SparklineGroups.Add(worksheet("G8"), worksheet("C8:F8"), SparklineGroupType.Column)

See Also

SparklineGroupCollection Members

Spreadsheet Document API Examples

How to: Create Sparklines

DevExpress.Spreadsheet Namespace