VueUiHeatmap improvements
-
scaleMaxandscaleMinoptional config attributes are added, to control the strength of cell colors based on fixed bounds, instead of relying on the default max value of the dataset. One and / or the other can be used. -
The previous behavior is unchanged, since these new properties are set to
nullby default.
const config = computed<VueUiHeatmapConfig>(() => ({
style: {
layout: {
cells: {
scaleMax: null, // new
scaleMin: null, // new
},
},
},
}));