github graphieros/vue-data-ui v3.25.8

14 hours ago

VueUiHeatmap improvements

  • scaleMax and scaleMin optional 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 null by default.

const config = computed<VueUiHeatmapConfig>(() => ({
    style: {
        layout: {
            cells: {
                scaleMax: null, // new
                scaleMin: null, // new
            },
        },
    },
}));

Docs are up to date

Don't miss a new vue-data-ui release

NewReleases is sending notifications on new releases.