VueUiStackline
Add config options to control the color of series paths and dots:
const config = computed<VueUiStacklineConfig>(() => ({
style: {
chart: {
lines: {
path: {
useSerieColor: true, // new
stroke: '#FFFFFF' // new
},
dot: {
stroke: '#FFFFFF' // new
}
}
}
}
}))