github graphieros/vue-data-ui v3.2.2

11 hours ago

VueUiTable

  • Improve line & bar chart layouts with zoom input, and date labels
image

New config attributes:

const config = ref({
  style: {
    chart: {
      layout: {
        timeLabels: {  // new
          showOnlyAtModulo: true,
          modulo: 12
        },
        datetimeFormatter: {  //new
          enable: true,
          locale: 'en',
          useUTC: false,
          januaryAsYear: true,
          options: {
            year: 'yyyy',
            month: "MMM 'yy",
            day: 'dd MMM',
            hour: 'HH:mm',
            minute: 'HH:mm:ss',
            second: 'HH:mm:ss'
          }
        },
        zoom: {  // new
          show: true,
        }
      }
    }
  }
})

VueUiWheel

  • Improve 3d options with depth
Enregistrement.de.l.ecran.2025-09-26.a.08.19.18.mov

New config option:

const config = ref({
  style: {
    chart: {
      layout: {
        wheel: {
          ticks: {
            depth3d: 0, // New: default 0.
          }
        }
      }
    }
  }
})

Other

  • Fix trend calculation in VueUiXy (when dataset.useProgression is true) and VueUiTable (line & bar charts)

Don't miss a new vue-data-ui release

NewReleases is sending notifications on new releases.