github graphieros/vue-data-ui v3.25.6

5 hours ago

VueUiRidgeline improvements

  • New config attribute to show the last label when the chart is not hovered:
const config = computed<VueUiRidgelineConfig>(() => ({
    style: {
        chart: {
            yAxis: {
                labels: {
                    showLast: false, // new
                },
            },
        },
    },
}));

VueUiAgePyramid improvements

  • Optional display of bar data labels:
const config = computed<VueUiAgePyramidConfig>(() => ({
    style: {
        layout: {
            bars: {
                // new
                labels: {
                    show: true,
                    showOnHover: true, // set to false, always shows labels if labels.show is also true
                    fontSize: 12,
                    color: "#2D353C",
                    bold: false,
                    formatter: null,
                    offsetX: 0,
                },
            },
        },
    },
}));

Other

  • Reduce package size (-133 Ko)

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

NewReleases is sending notifications on new releases.