Completed
Last Updated: 01 Nov 2021 15:11 by ADMIN
Release R3 2021 SP
Luke
Created on: 14 Oct 2021 10:06
Category: HeatMap
Type: Bug Report
1
HeatMap: Labels remain on the render surface after the ItemsSource is replaced dynamically and the row or column count is changed

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;

0 comments