Class ColorScaleValueContextBase
Abstract base for color scale value contexts that define minimum and maximum values with associated colors for gradient conditional formatting.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.ConditionalFormattings
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public abstract class ColorScaleValueContextBase : RangeValueContextBase
Constructors
ColorScaleValueContextBase()
Initializes a new ColorScaleValueContextBase, the base for all color scale value contexts.
Declaration
protected ColorScaleValueContextBase()
Properties
MaximumColor
Gets or sets the color applied to cells at the maximum value threshold in the gradient scale.
Declaration
public ThemableColor MaximumColor { get; set; }
Property Value
|
ThemableColor
|
MaximumValue
Gets or sets the maximum value threshold for the color scale, which cannot be of type LowestValue.
Declaration
public IRangeValue MaximumValue { get; set; }
Property Value
|
IRangeValue
|
MinimumColor
Gets or sets the color applied to cells at the minimum value threshold in the gradient scale.
Declaration
public ThemableColor MinimumColor { get; set; }
Property Value
|
ThemableColor
|
MinimumValue
Gets or sets the minimum value threshold for the color scale, which cannot be of type HighestValue.
Declaration
public IRangeValue MinimumValue { get; set; }
Property Value
|
IRangeValue
|