Color Range Style

Overview

Color ranges are used to color certain areas of the gauge to make it more informative. For example, you may split the scale into 3 areas: green, yellow and red according to their values. Size of color ranges is set in percents of the whole area and, therefore, color range can have different shapes. Each color_range node should be placed inside color_ranges node, and color_ranges must lie within axis node.

So Color Ranges Style defines the visual appearance of our color ranges and their behaviour in our chart.

Available Settings

Full XML List:

XML Syntax
Plain code
01 <color_range_style name="" parent="" color="" hatch_type="" padding="" align="" width="">
02   <fill />
03   <hatch_fill />
04   <border />
05   <effects />
06   <label enabled="" padding="" align="" text_align="" rotation="" value="">
07     <font />
08     <format />
09     <background />
10     <effects />
11   </label>
12 </color_range_style>

Description

So in color_range_style we define the define name and parent, color and hatch_fill, and of course its position - padding, align and width. Also in color_range_style we have a number of subnodes that deal with visual appearance of it (fill, hatch_fill, border, effects). We may assign label for our color range and set attributes that are common for all labels. label node also has a number of subnodes defining its position and visual appearance on our gauge.

to top

States Supported

No states are supported for this style.

to top