Class
FormulaChartData

Chart data backed by a spreadsheet-like formula that references external cells or ranges for values.

Definition

Namespace:Telerik.Windows.Documents.Model.Drawing.Charts

Assembly:Telerik.Windows.Documents.Core.dll

Syntax:

cs-api-definition
public abstract class FormulaChartData : IChartData

Inheritance: objectFormulaChartData

Derived Classes: WorkbookFormulaChartData

Implements: IChartData

Constructors

FormulaChartData(string)

Create a new instance that uses a formula reference to supply chart values.

Declaration

cs-api-definition
protected FormulaChartData(string formula)

Parameters

formula

string

The formula which refers to the chart data.

Properties

ChartDataType

Gets the chart data kind, identifying this instance as formula-backed data.

Declaration

cs-api-definition
public ChartDataType ChartDataType { get; }

Property Value

ChartDataType

Implements IChartData.ChartDataType

Formula

Gets the formula string that references the source data for the chart.

Declaration

cs-api-definition
public string Formula { get; }

Property Value

string

Methods

Clone()

Create a deep copy of this chart data instance.

Declaration

cs-api-definition
public abstract IChartData Clone()

Returns

IChartData

The deep copy of the object.

Implements IChartData.Clone()