Skip to content

Releases: graphieros/vue-data-ui

v2.8.0

28 May 21:38
Compare
Choose a tag to compare

VueUiWorld

New map component: VueUiWorld

Enregistrement.de.l.ecran.2025-05-28.a.23.18.39.mov

13 projections are available:

Projection Preview
aitoff image
azimuthalEquidistant image
bonne image
equirectangular image
gallPeters image
globe image
hammer image
mercator image
mollweide image
robinson image
sinusoidal image
vanDerGrinten image
winkelTripel image

Docs are up to date, with all projection examples.

v2.7.6

26 May 05:26
Compare
Choose a tag to compare

VueUiXy

  • Fix area base y position when all values are negative

v2.7.5

24 May 20:24
Compare
Choose a tag to compare

Built-in annotator: text mode

  • Allow users to add text annotations on charts
Enregistrement.de.l.ecran.2025-05-24.a.22.20.30.mov

v2.7.2

22 May 15:22
Compare
Choose a tag to compare

VueUiXy

  • Add a config option to cut lines and areas on null values. Set to false by default, so it does not lead to breaking changes.
const config = {
  line: {
    cutNullValues: false,
  }
}

VueUiChestnut

  • Improve the proportions of expanded donuts so it's more visually pleasing
    image

v2.7.1

21 May 10:54
Compare
Choose a tag to compare

VueUi3dBar #192

  • Remove default labels when using formatter

v2.7.0

18 May 15:55
Compare
Choose a tag to compare

Remove html2canvas dependency

html2canvas was removed as a dependency, in favor of a tailor-made dom to image solution which fits the specific needs of vue-data-ui, to generate chart images or pdfs.

The vue-ui-screenshot component was removed.

v2.6.51

17 May 06:00
Compare
Choose a tag to compare

VueUiWordCloud & VueUiMolecule

  • Add a reset button when zoom is active
Enregistrement.de.l.ecran.2025-05-17.a.07.51.26.mov

If you need to customize the button, a #reset-action slot is available.
Use reset(true) to reset the animation with the animation, or just reset() without animation.

<VueUiWordCloud :dataset="dataset" :config="config">
  <template #reset-action="{ reset }">
    <button @click="reset(true)">REFRESH</button>
  </template>
</VueUiWordCloud>

v2.6.50

16 May 06:01
Compare
Choose a tag to compare

VueUiWordCloud

  • Improve word packing algorithm
  • Use pan zoom instead of a range input (zoom now works with the mouse wheel, and pinch on touch devices)
Enregistrement.de.l.ecran.2025-05-16.a.07.53.59.mov

The following config attributes (color, highlightColor, useResetSlot), which were related to the old range input zoom, are deprecated:

const config = {
  style: {
    chart: {
      zoom: {
        show: true,
        color: #E1E5E8, // deprecated
        highlightColor: #CCCCCC, // deprecated
        useResetSlot: false // deprecated
      }
    }
  }
}

v2.6.48

11 May 09:04
Compare
Choose a tag to compare

VueUiIcon

Add new icons:

name icon
computer image
home image
homeFilled image
hourglass image
htmlTag image
curlyBrackets image
curlySpread image

Check out all available icons

v2.6.47

08 May 08:20
Compare
Choose a tag to compare

VueUiDonut & VueUiNestedDonuts

Add padding config option in config.style.chart.padding

const config = {
  style: {
    chart: {
      padding: {
        top: 0,
        right: 0,
        bottom: 0,
        left: 0
      }
    }
  }
}

DOCS and chart builder pages are up to date