Skip to main content
A newer version of this page is available. .

Bar Color Ranges

  • 3 minutes to read

Bar Color Ranges allow you to visualize numeric values using bars whose colors are contained in the specified color set.

Create a Format Rule

To format values according the required condition, click the data item menu button, select Add Format Rule | Bar Color Ranges and choose the required color set.

BarColorRanges_Menu

This invokes the Color Range Bar dialog containing the set of value ranges and corresponding colors. The Grid dashboard item on the right displays the default formatting applied using the predefined set of 3 colors.

ConditionalFormatting_ColorRangeBarDialog

This dialog allows you to change the following options specific to Bar Color Ranges.

  • The Format Style combo box allows you to change the color set used to apply formatting.
  • The Use % ranges check box specifies whether the percent or absolute scale is used to generate ranges.

    Note

    Note that this option is not available for numeric dimensions.

  • To change the appearance settings applied to values corresponding to the specified range, click the button next to the required color and select a new color or specify custom appearance settings. To learn how to specify custom settings, see the Specify Appearance Settings paragraph in the Conditional Formatting topic.

    BarColorRangeDialog_ChangeAppearance

    Select No Style to disable the indication for the required range.

  • You can change range boundaries by specifying the required values.

    ColorRangeSetDialog_ChangeRangeStop

    Note

    Note that a new value should fall into a range between corresponding values of the previous and next range.

  • To change the comparison logic for the required range, click the comparison sign and select the required option.

    ColorRangeSetDialog_ChangeComparisonLogic

    The greater or equal sign includes the smallest value for the current interval, while the greater sign excludes the smallest value from the current interval and includes it in the next interval.

  • Use the Add and Delete buttons to add new ranges or delete the selected range respectively.

Create a Format Rule in Code

To create a format condition to display bars of different colors with lengths proportional to corresponding values, use the following approaches.

  1. To use a predefined set of colors, pass the required FormatConditionRangeSetPredefinedType enumeration value to the FormatConditionColorRangeBar constructor or call the FormatConditionColorRangeBar.Generate method.
  2. To use a predefined set of colors and custom range boundaries, do the following.

  3. To use custom range boundaries and the required style specified for each range, do the following.

Assign the resulting FormatConditionColorRangeBar object to the DashboardItemFormatRule.Condition property.

How to: Apply Conditional Formatting to Grid Cells using the Bar Color Ranges Format Condition