Skip to content

v2.14.0

Choose a tag to compare

@graphieros graphieros released this 08 Jul 06:19
· 720 commits to master since this release

Date time formatter

A config datetime formatter was added to the following components, to manage timestamp x axis values formatting:

  • VueUiXy
  • VueUiXyCanvas
  • VueUiStackbar
  • VueUiRidgeline
  • VueUiDonutEvolution
  • VueUiQuickChart
datetimeFormatter: {
  enable: boolean // default: false
  locale: string // default: 'en'
  useUTC: boolean // default: false
  januaryAsYear: boolean // default: false
  options: {
    year: string // default: 'yyyy'
    month: string // default: "MMM 'yy"
    day: string // default: 'dd MMM'
    hour: string // default: 'HH:mm'
    minute: string // default: 'HH:mm:ss'
    second: string // default: 'HH:mm:ss'
  }
}

DOCS are up to date