HeatMapOptions

Modified in version 5.0.7

HeatMapOptions ( cellGap ;​ cellCornerRadius ;​ cellScaleFactor ;​ doArrangeColumnByColumn ;​ optimizeLabelTextColor )

Argument Type Range Default Note
cellGap num 0..100 0.0 Absolute in px or in % of plot area.
cellCornerRadius num 0..1 0.0 Square 0..1 oval
cellScaleFactor num 0..1 1.0
doArrangeColumnByColumn int 0..1 off
optimizeLabelTextColor int 0..1 off xmCHART 5.0.7 or higher required
Examples

HeatMapOptions(2) /* 2 pixel wide gap. */

HeatMapOptions(0.5%) /* Gap size is 0.5% of the diagonal of the plot area. */

HeatMapOptions(;​0) /* Rect cells. */

HeatMapOptions(;​0.5) /* Round rect cells. */

HeatMapOptions(;​1) /* Oval shaped cells. */

HeatMapOptions(;​;​1) /* All cells have the same size. */

HeatMapOptions(;​;​0.5) /* The cell with the lowest value has half the size of the max. cell. */

Description

By activating the argument optimizeLabelTextColor =​ on the label text color is automatically adjusted to ensure good readability.
For examples, please refer to HeatMap() and Color Scales.
See also functions LegendColorScale() and LegendColorTones() .

Scroll to Top