Skip to content

v3.23.6

Latest

Choose a tag to compare

@graphieros graphieros released this 18 Aug 04:44
· 1 commit to master since this release

VueUiWaffle improvements

  • New config attributes:
const config = computed<VueUiWaffleConfig>(() => ({
    style: {
        chart: {
            layout: {
                rect: {
                    merged: false, // New: merge all series squares into unique polygons

                    // New: alternatives to signal series highlight when useBlurOnHover is set to `false`
                    selection: {
                        unselectedOpacity: 0.6,

                        // New: signal highlight by gift-wraping all squares of highlighted series with a polygon
                        wrap: {
                            show: true,
                            stroke: "#2D353C",
                            strokeWidth: 3,
                            strokeLinejoin: "round",
                        },
                    },
                },
            },
        },
    },
}));

Examples:

  • highlighted series with wrap.show: true and useBlurOnHover: false
image
  • merge mode enabled:
image

Docs are up to date