v2.6.32
VueUiDonutEvolution #187
Add config options to hide donut labels under a given percentage value, under config.style.chart.donuts
.
A different threshold can be applied on hover state or zoom state:
const config = ref({
style: {
chart: {
donuts: {
hover: {
hideLabelsUnderValue: 5, // Any label with a percentage under 5 will be hidden
},
zoom: {
hideLabelsUnderValue: 3, // Any label with a percentage under 3 will be hidden
}
}
}
}
})