VueUiDonut & VueUiNestedDonuts
- Fix incomplete arc when values are way under 0 (ej. 0.00001) - (This affected all components containing donuts)
- Add config attribute to control the transparent color applied on arcs on hover:
const config = ref({
style: {
chart: {
layout: {
donut: {
selectedColor: "#0000001A", // new
borderColorAuto: true, // new (if true, defaults to the same color as the chart's backgroundColor)
borderColor: "#CCCCCC" // used if borderColorAuto is false
}
}
}
}
})