This release adds optional responsive features to the following charts:
- VueUiGauge
- VueUiDumbbell
- VueUiWheel
To activate this feature:
-
The chart must be placed inside a parent container that has fixed dimensions, or a resizable container. If no dimensions are provided, the chart will grow to infinity.
-
Set the config.responsive attribute to true:
const config = ref({
responsive: true,
...
})