VueUiSparkline
Add config option to cut null values:
const config = computed<VueUiSparklineConfig>(() => ({
style: {
line: {
cutNullValues: false, // new, default
}
}
}));VueUiTableSparkline
The same config option is also ported to this component, that uses VueUiSparkline
const config = computed<VueUiTableSparklineConfig>(() => ({
sparkline: {
cutNullValues: false, // new, default
}
}));