github graphieros/vue-data-ui v2.6.32

latest releases: v3.1.2, v3.1.1, v3.1.0...
5 months ago

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

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

NewReleases is sending notifications on new releases.