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