Skip to content

Releases: graphieros/vue-data-ui

v2.3.39

24 Oct 06:56
Compare
Choose a tag to compare

VueUiKpi : fix regression related to value rounding

v2.3.37

24 Oct 06:11
Compare
Choose a tag to compare

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

23 Oct 16:05
Compare
Choose a tag to compare

This release adds the option to display the value as analog numbers in VueUiKpi :

Enregistrement.de.l.ecran.2024-10-23.a.18.01.46.mov

Docs and chart builder are up to date.

v2.3.34

22 Oct 14:20
Compare
Choose a tag to compare

This release adds support for negative values to the following charts:

  • VueUiStackbar
  • VueUiVerticalBar

See #88

Documentation website is up to date.

Enregistrement.de.l.ecran.2024-10-22.a.15.57.36.mov
Enregistrement.de.l.ecran.2024-10-22.a.16.04.38.mov

v2.3.31

21 Oct 09:37
Compare
Choose a tag to compare

VueUiParallelCoordinatePlot : add formatters (see v2.3.30)

VueUiWaffle: fix regression preventing the use of the #cell slot

v2.3.30

21 Oct 08:11
Compare
Choose a tag to compare

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

19 Oct 08:04
Compare
Choose a tag to compare

This release adds an optional zoom feature on VueUiWordCloud:

Enregistrement.de.l.ecran.2024-10-19.a.10.02.02.mov

Try it out here

v2.3.27

17 Oct 16:08
Compare
Choose a tag to compare

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.

Default layout:

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

v2.3.26

15 Oct 16:18
Compare
Choose a tag to compare

VueUiWaffle : fixed a bug related to bad proportion calculations.

See issue #81

v2.3.25

14 Oct 05:04
Compare
Choose a tag to compare

VueUiKpi: fix dataset reactivity issues

See issue #78