Class FormulaChartData
Chart data backed by a spreadsheet-like formula that references external cells or ranges for values.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Model.Drawing.Charts
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public abstract class FormulaChartData : IChartData
Constructors
FormulaChartData(String)
Create a new instance that uses a formula reference to supply chart values.
Declaration
protected FormulaChartData(string formula)
Parameters
|
System.String
formula
The formula which refers to the chart data. |
Properties
ChartDataType
Gets the chart data kind, identifying this instance as formula-backed data.
Declaration
public ChartDataType ChartDataType { get; }
Property Value
|
ChartDataType
|
Implements
Formula
Gets the formula string that references the source data for the chart.
Declaration
public string Formula { get; }
Property Value
|
System.String
|
Methods
Clone()
Create a deep copy of this chart data instance.
Declaration
public abstract IChartData Clone()
Returns
|
IChartData
The deep copy of the object. |