Class ChartDataTableImpl
Class used for Chart DataTable implementation.
Inherited Members
Namespace: Syncfusion.XlsIO.Implementation.Charts
Assembly: Syncfusion.XlsIO.Portable.dll
Syntax
public class ChartDataTableImpl : CommonObject, IParentApplication, IDisposable, IChartDataTable
Constructors
ChartDataTableImpl(IApplication, Object)
Creates default data table.
Declaration
public ChartDataTableImpl(IApplication application, object parent)
Parameters
| Type | Name | Description |
|---|---|---|
| IApplication | application | Application object for the new data table. |
| System.Object | parent | Parent object for the new data table. |
ChartDataTableImpl(IApplication, Object, IList<BiffRecordRaw>, ref Int32)
Extracts data table's data from the array of BiffRecords.
Declaration
public ChartDataTableImpl(IApplication application, object parent, IList<BiffRecordRaw> data, ref int iPos)
Parameters
| Type | Name | Description |
|---|---|---|
| IApplication | application | Application object for the new data table. |
| System.Object | parent | Parent object for the new data table. |
| System.Collections.Generic.IList<Syncfusion.XlsIO.Parser.Biff_Records.BiffRecordRaw> | data | Array of BiffRecords that contains the data table's data. |
| System.Int32 | iPos | Position of the ChartData record. |
Properties
HasBorders
True if the data table has borders. otherwise False.
Declaration
public bool HasBorders { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
HasHorzBorder
True if the data table has horizontal border. otherwise False.
Declaration
public bool HasHorzBorder { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
HasVertBorder
True if the data table has vertical border. otherwise False.
Declaration
public bool HasVertBorder { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
ShowSeriesKeys
True to show legend keys in the data table. otherwise False.
Declaration
public bool ShowSeriesKeys { get; set; }
Property Value
| Type |
|---|
| System.Boolean |
TextArea
Gets the text area of the data table. Read-only.
Declaration
public IChartTextArea TextArea { get; }
Property Value
| Type |
|---|
| IChartTextArea |
Methods
Clone(Object)
Clone current Record.
Declaration
public ChartDataTableImpl Clone(object parent)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Object | parent | Parent object for create new instance. |
Returns
| Type | Description |
|---|---|
| ChartDataTableImpl | Returns clone of current object. |
Serialize(OffsetArrayList)
Serializes data table.
Declaration
public void Serialize(OffsetArrayList records)
Parameters
| Type | Name | Description |
|---|---|---|
| OffsetArrayList | records | OffsetArrayList that will receive all data table records. |
Exceptions
| Type | Condition |
|---|---|
| System.ArgumentNullException | When specified OffsetArrayList is NULL. |