github graphieros/vue-data-ui v3.7.4

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

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.