8000 Release v3.2.2 · graphieros/vue-data-ui · GitHub
[go: up one dir, main page]

Skip to content

v3.2.2

Compare
Choose a tag to compare
@graphieros graphieros released this 26 Sep 06:29
· 15 commits to master since this release

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