github graphieros/vue-data-ui v3.7.5

latest release: v3.7.6
8 hours ago

VueUiHorizontalBar #272

  • Fix sizing issues in responsive mode
  • Updated config:
const config = ref({
  autoSize: true, // Deprecated, not necessary anymore
  style: {
    chart: {
      width: 512, // new
      height: 316, // new
      layout: {
        bars: {
          height: 32, // Deprecated
          offsetX: 0 // used to be 64, now available space is automatically adapted, but you can still set additional offset
        },
      },
    },
  },
});

VueUiCirclePack #275

  • Fix sizing issues in responsive mode
  • Fix non predictable chart sizing in general
  • Updated config:
const config = ref({
  responsive: false, // new
  style: {
    chart: {
      width: 512, // new
      height: 316, // new
    },
  },
});

VueUiSparkbar #273

  • Add css classes to target data labels:
.vue-ui-sparkbar-datapoint-name {
}
.vue-ui-sparkbar-datapoint-value {
}

Docs are up to date

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

NewReleases is sending notifications on new releases.