Skip to content

Releases: graphieros/vue-data-ui

v2.10.2

09 Jun 18:25
Compare
Choose a tag to compare

VueUiWordCloud

  • Minor performance improvements

v2.10.1

09 Jun 08:05
Compare
Choose a tag to compare

Tooltips

  • Apply a smoother subtle position transition for tooltips

v2.10.0

08 Jun 07:12
Compare
Choose a tag to compare

VueUiRidgeline

New component

A ridgeline chart (also known as a joyplot) is a series of line plots that are combined by vertical stacking to allow the easy visualization of changes through space or time. The plots are often overlapped slightly to allow the changes to be more clearly contrasted.

Ridgeline charts are perfect for comparing distributions across categories or time—especially when you want to show patterns, overlaps, or trends among many groups at once

Usage examples

  • Visualize distributions over time of daily temperatures
  • Analyze word frequencies across chapters in different books
  • Compare the distribution of daily returns for various stock market sectors

Clicking on the label of a datapoint singles it out inside a resizable and draggable dialog.

🔗 View the docs

🔗 View examples

A chart maker is also available to quickly copy paste a turnkey boilerplate.

Enregistrement.de.l.ecran.2025-06-08.a.09.02.30.mov

v2.9.6

01 Jun 09:06
Compare
Choose a tag to compare

VueUiWorld

  • Fix issue with legend colors

v2.9.5

31 May 17:48
Compare
Choose a tag to compare

VueUiTable

  • Use VueUiXy and VueUiDonut as chart components instead of old built-in charts
image image image
  • Config changes:
const vue_ui_table = ref({
    //...
    style: {
        chart: {
            layout: {
                line: {
                    smooth: true, // new
                    useArea: false, // new
                    selector: {
                        stroke: '#ccc', // Deprecated
                        strokeWidth: 1, // Deprecated
                        strokeDasharray: 5 // Deprecated
                    }
                },
            }
        }
    },
})

v2.9.2

30 May 18:23
Compare
Choose a tag to compare

VueUiTable #203

  • Fix dataset reactivity issue

v2.9.1

30 May 04:08
Compare
Choose a tag to compare

VueUiWorld #202

To accommodate different perspectives and use cases, the VueUiWorld component now includes a configuration option:

config.style.chart.territory.showTaiwanAsPartOfChina

const config = ref({
  style: {
    chart: {
      territory: {
        showTaiwanAsPartOfChina: true
      }
    }
  }
})

When set to true, Taiwan is displayed as part of China on the map.
When set to false (the default), Taiwan is shown as a separate entity.

This approach is intended to offer flexibility for developers and organizations with varying requirements. We do not take a position on political matters and aim to provide a configurable solution for all users.

v2.9.0

29 May 17:23
Compare
Choose a tag to compare

Move jspdf to peer dependencies #201

From this version onwards, jspdf will have to be installed to use the pdf generation.

If you don't want to use pdf generation, but wish to use the chart menu options, you can remove the pdf button from the config:

const config = ref({
  userOptions: {
    show: true,
    buttons: {
      pdf: false, // hide the pdf button
    }
  }
})

v2.8.1

29 May 14:47
Compare
Choose a tag to compare

VueUiDashboard #197

  • Add support for passing custom components in the dataset prop
const dynamicString = ref('Dynamic string content');

const comps = computed(() => [
  {
    id: 1,
    width: 20,
    height: 50,
    left: 44,
    top: 4,
    component: "VueUiGauge", // Vue Data UI component, passed here as string
    props: { config: { userOptions: { show: false } }, dataset: gaugeDataset },
  },
  {
    id: 2,
    width: 20,
    height: 60,
    left: 44,
    top: 50,
    component: markRaw(MyCustomComponent), // Your custom component
    props: { str: dynamicString.value },
  },
]);

VueUiWorld

  • Reverse drag direction in globe projection

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.