ActiveReports 8 > ActiveReports User Guide > Concepts > Page Report Concepts > Data Visualizers > Color Scale 2 |
The ColorScale2 data visualization displays a background color in a range of colors to indicate minimum and maximum values, and all shades in between.
You can use static values or aggregate functions (e.g. Min or Max) to set the Minimum and Maximum parameters. For more information on these and other aggregate functions, see the Common Functions topic.
=ColorScale2(Value, Minimum, Maximum, StartColor, EndColor)
Use an expression with this syntax in the BackgroundColor property of a Textbox control. This causes the background color to change depending on the value of the field you specified in the Value parameter, in the case of the example, InStock. Any values falling between the Minimum value and the Maximum render with a color between the StartColor and EndColor.
Example
Set the Value parameter to the value of a field in your dataset to display the field values visually.
Paste into the BackgroundColor property of a TextBox |
Copy Code
|
---|---|
=ColorScale2(Fields!InStock.Value,0,20,"Crimson","MidnightBlue") |
Default Behavior
The function returns Transparent in any of the following cases:
If the argument for any of the parameters cannot be converted to the required data type, the default value is used instead.
Parameter | Default Value |
---|---|
Value | 0 |
Minimum | 0 |
Maximum | 0 |
StartColor | Silver |
EndColor | WhiteSmoke |
Dialog
When you select a TextBox control on your report, in the Properties window or Properties dialog, you can drop down the BackGroundColor property and select <Data Visualizer...> to launch the dialog. To build the data visualizer expression, select the appropriate values for each of the options in the dialog.
Note: If you select the Use a middle color check box, the expression used in the BackgroundColor property changes to ColorScale3. For more information, see ColorScale3. |