Skip to content

v3.19.2

Latest

Choose a tag to compare

@graphieros graphieros released this 05 May 05:12
· 2 commits to master since this release

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
                }
            }
        }
    }
}))

Docs are up to date