VueUiDonutEvolution #291
- Add config attributes to control y-axis scale min, max, or set it to auto (based on the dataset's min & max):
const config = ref({
style: {
chart: {
layout: {
grid: {
yAxis: {
autoScale: false, // new
scaleMin: null, // new
scaleMax: null, // new
}
}
}
}
}
});