Class ExcelChartExDataCollection
A collection of chart data.
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()
Get the enumerator
Declaration
public IEnumerator<ExcelChartExData> GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerator<ExcelChartExData> |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Get the enumerator
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System.Collections.IEnumerator |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable