Skip to content

v3.22.1

Latest

Choose a tag to compare

@graphieros graphieros released this 26 Jun 05:23

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