Releases: graphieros/vue-data-ui
v2.3.75
All chart components were reviewed to ensure proper reactivity whenever props change.
This used to be a flaw in Vue Data UI, forcing users to re-render components by adding a key.
Documentation website will soon feature examples.
v2.3.74
VueUiVerticalBar
Fix parent data labels wrong sign when total is negative
VueUiXy
Fix scale vertical line and labels positioning when only one datapoint is visible in stack mode with a datapoint has fixed scale parameters (v2.3.73)
v2.3.72
A few types for VueUiSparkStackbar
component are renamed to be compliant with the naming convention of the library:
Before | v2.3.72 onwards |
---|---|
VueUiSparkStackBarConfig |
VueUiSparkStackbarConfig |
VueUiSparkStackBarDatasetItem |
VueUiSparkStackbarDatasetItem |
VueUiSparkStackBarConfig |
VueUiSparkStackbarConfig |
This is a breaking change if you happen to be using the old types with v2.3.72 onwards.
Thanks @cyrilf for the fix!
v2.3.71
VueUiXy
Fix several regressions.
v2.3.70
v2.3.69
v2.3.68
v2.3.67
VueUiXy and VueUiQuickChart
Improve minimap with:
. hovering the minimap shows a selector, and the corresponding area is highlighted on the main chart
. inversely when hovering the chart, corresponding zone is selected on the minimap
Enregistrement.de.l.ecran.2024-11-02.a.16.39.18.mov
v2.3.66
This release improves chart components stability when unprocessable values are passed into datasets (NaN, undefined, Infinity, -Infinity, null
).
Whenever these values are present in a dataset, it is converted to 0, and in some useful cases, shown as a warning in the console.
v2.3.61
VueUiHeatmap
Add new config options to rotate xAxis labels, and only show them at given modulo.
config.style.layout.dataLabels.xAxis.rotation: number; // default 0
config.style.layout.dataLabels.xAxis.showOnlyAtModulo: number | null; // default: null
Documentation page and chart maker are up to date.