Releases: graphieros/vue-data-ui
v2.3.39
VueUiKpi
: fix regression related to value rounding
v2.3.37
This release fixes errors in type definitions and config defaults.
Using the chart builder, you might need to nuke your localStorage to reset defaults.
v2.3.35
v2.3.34
v2.3.31
VueUiParallelCoordinatePlot
: add formatters (see v2.3.30)
VueUiWaffle
: fix regression preventing the use of the #cell slot
v2.3.30
This release adds the new formatter
config attribute to all charts with data labels, to give you more control on their formatting.
const config = ref({
// The formatter attribute is generally located in labels or dataLabels attributes, you can find them in the docs
formatter: ({ value, config }) => {
// the config param gives additional data you may require in some cases
return `my format: ${value.toLocaleString('de-DE')}`;
}
});
The following charts have the formatter located in the dataset, and not the config:
. VueUiSparkbar
. VueUiRadar
v2.3.28
v2.3.27
This release adds a new component: VueUiStackbar
The docs are almost ready, you can already play with the config here.
A chart maker is also available, to quickly scaffold your chart component.
Layout with the distributed config option:
This new component was added to answer #80
I'm not a huge fan of this visualization in general, as it can be hard for users to understand variations.
But hey, it's up to the devs to provide readable datasets ;)