v2.16.3
VueUiStackbar
- Add new config options:
const config = ref({
style: {
chart: {
bars: {
dataLabels: {
hideUnderValue: null, // or number
hideUnderPercentage: null, // or number, ej. 50 for 50%; used when showDistributedPercentage is true
},
},
grid: {
x: {
// style horizontal grid lines
linesColor: '#E1E5E8',
linesThickness: 1,
linesStrokeDasharray: 0
},
y: {
// style vertical grid lines
linesColor: '#E1E5E8',
linesThickness: 1,
linesStrokeDasharray: 0
}
}
}
}
})