Show / Hide Table of Contents

Class ExcelChartExDataCollection

A collection of chart data.

Inheritance
System.Object
XmlHelper
ExcelChartExDataCollection
Implements
System.Collections.Generic.IEnumerable<ExcelChartExData>
System.Collections.IEnumerable
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: OfficeOpenXml.Drawing.Chart.ChartEx
Assembly: EPPlus.dll
Syntax
public class ExcelChartExDataCollection : XmlHelper, IEnumerable<ExcelChartExData>, IEnumerable

Properties

Count

Number of items in the collection

Declaration
public int Count { get; }
Property Value
Type Description
System.Int32

Id

The id of the data

Declaration
public int Id { get; }
Property Value
Type Description
System.Int32

Item[Int32]

Indexer

Declaration
public ExcelChartExData this[int index] { get; }
Parameters
Type Name Description
System.Int32 index

The index

Property Value
Type Description
ExcelChartExData

Methods

AddNumericDimension(String)

Adds a numeric dimension

Declaration
public ExcelChartExNumericData AddNumericDimension(string formula)
Parameters
Type Name Description
System.String formula

The formula or address

Returns
Type Description
ExcelChartExNumericData

The numeric data

AddStringDimension(String)

Adds a string dimension

Declaration
public ExcelChartExStringData AddStringDimension(string formula)
Parameters
Type Name Description
System.String formula

The formula or address

Returns
Type Description
ExcelChartExStringData

The string data

GetEnumerator()

Declaration
public IEnumerator<ExcelChartExData> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<ExcelChartExData>

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator

Implements

System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable
Back to top Generated by DocFX