Completed
Last Updated: 01 Nov 2021 15:11 by ADMIN
Release R3 2021 SP

Labels (instances of the LightTextBlock control) remain on the render surface after the ItemsSource is replaced dynamically and the row or column count is changed. As a workaround, the control can be redrawn manually to clear the surface:

        var temp = heatmapTest.Template;
        heatmapTest.Template = null;
        heatmapTest.Template = temp;

Completed
Last Updated: 03 Oct 2019 04:40 by ADMIN
Release LIB 2019.3.1007
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;
Completed
Last Updated: 24 Sep 2019 06:56 by ADMIN
Release LIB 2019.3.923
Completed
Last Updated: 30 Jul 2018 06:14 by ADMIN
Completed
Last Updated: 08 Aug 2016 13:41 by ADMIN
ADMIN
Created by: Dinko | Tech Support Engineer
Comments: 0
Category: HeatMap
Type: Bug Report
0

			
Completed
Last Updated: 12 Mar 2016 12:25 by ADMIN
The labels are not positioned correctly when some of the cells are empty.

Available in LIB version: 2016.1.314
Completed
Last Updated: 29 Feb 2016 14:54 by ADMIN