Class PivotCellTemplateSelector
Default CellTemplateSelector for RadPivotGrid.
Namespace: Telerik.Windows.Controls.Pivot
Assembly: Telerik.Windows.Controls.Pivot.dll
Syntax
public class PivotCellTemplateSelector : DataTemplateSelector
Constructors
PivotCellTemplateSelector()
Declaration
public PivotCellTemplateSelector()
Properties
Negative
Gets or sets the template that is used for negative KPI values (smaller than zero).
Declaration
public DataTemplate Negative { get; set; }
Property Value
System.Windows.DataTemplate
The template. |
Neutral
Gets or sets the template that is used for neutral KPI values (equal to zero).
Declaration
public DataTemplate Neutral { get; set; }
Property Value
System.Windows.DataTemplate
The neutral. |
Positive
Gets or sets the template that is used for positive KPI values (larger than zero).
Declaration
public DataTemplate Positive { get; set; }
Property Value
System.Windows.DataTemplate
The positive. |
Methods
SelectTemplate(Object, DependencyObject)
When overridden in a derived class, returns a DataTemplate based on custom logic.
Declaration
public override DataTemplate SelectTemplate(object item, DependencyObject container)
Parameters
System.Object
item
The data object for which to select the template. |
System.Windows.DependencyObject
container
The data-bound object. |
Returns
System.Windows.DataTemplate
|