github graphieros/vue-data-ui v3.22.1

4 hours ago

VueUiSparkline

Add config option to cut null values:

const config = computed<VueUiSparklineConfig>(() => ({
    style: {
        line: {
            cutNullValues: false, // new, default
        }
    }
}));

View example

VueUiTableSparkline

The same config option is also ported to this component, that uses VueUiSparkline

const config = computed<VueUiTableSparklineConfig>(() => ({
    sparkline: {
        cutNullValues: false, // new, default
    }
}));

Docs are up to date

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

NewReleases is sending notifications on new releases.