New to Telerik Document ProcessingStart a free 30-day trial

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:

C#
public abstract class FormulaChartData : IChartData

Inheritance: objectFormulaChartData

Derived Classes: WorkbookFormulaChartData

Implements: IChartData

Constructors

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

C#
protected FormulaChartData(string formula)
Parameters:formulastring

The formula which refers to the chart data.

Methods

Create a deep copy of this chart data instance.

C#
public abstract IChartData Clone()
Returns:

IChartData

The deep copy of the object.

Implements: IChartData.Clone()

Properties

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

C#
public ChartDataType ChartDataType { get; }

Implements: IChartData.ChartDataType

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

C#
public string Formula { get; }