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. |
Id
The id of the data
Declaration
public int Id { get; }
Property Value
Type | Description |
---|---|
System. |
Item[Int32]
Indexer
Declaration
public ExcelChartExData this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
System. |
index | The index |
Property Value
Type | Description |
---|---|
Excel |
Methods
AddNumericDimension(String)
Adds a numeric dimension
Declaration
public ExcelChartExNumericData AddNumericDimension(string formula)
Parameters
Type | Name | Description |
---|---|---|
System. |
formula | The formula or address |
Returns
Type | Description |
---|---|
Excel |
The numeric data |
AddStringDimension(String)
Adds a string dimension
Declaration
public ExcelChartExStringData AddStringDimension(string formula)
Parameters
Type | Name | Description |
---|---|---|
System. |
formula | The formula or address |
Returns
Type | Description |
---|---|
Excel |
The string data |
GetEnumerator()
Get the enumerator
Declaration
public IEnumerator<ExcelChartExData> GetEnumerator()
Returns
Type | Description |
---|---|
System. |
Explicit Interface Implementations
IEnumerable.GetEnumerator()
Get the enumerator
Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type | Description |
---|---|
System. |
Implements
System.Collections.Generic.IEnumerable<T>
System.Collections.IEnumerable