github graphieros/vue-data-ui v3.9.15

14 hours ago

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

Docs are up to date

Don't miss a new vue-data-ui release

NewReleases is sending notifications on new releases.