Skip to content

v2.17.9

Choose a tag to compare

@graphieros graphieros released this 29 Jul 15:29
· 586 commits to master since this release

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