Completed
Last Updated: 03 Oct 2019 04:40 by ADMIN
Release LIB 2019.3.1007
Martin Ivanov
Created on: 21 Jun 2019 09:58
Category: HeatMap
Type: Bug Report
2
HeatMap: The cells values don't change at runtime when the colorizer is absolute
If you update the property value bound to the Value of the cells at runtime, this change doesn't reflect in the UI. To reproduce this you will need to assign a colorizer to the CategoricalDefinintion and set the colorize's IsAbsolute property to True.

To work this around, reset the Definition property of RadHeatMap after the values change.
var definition = this.heatMap.Definition;
this.heatMap.Definition = null;
this.heatMap.Definition = definition;
0 comments