To set a locale for the timeline, specify the option {locale: STRING}.

To set up a day scale and also shows the corresponding calendar weeks, configure use a time axis with day scale and enable showWeekScale. Then configure the format to output the date/day and the week info accordingly:


  {
    timeAxis: {
      scale: 'day',
      step: 1
    },
    showWeekScale: true,
    format: {
      minorLabels: {day: 'DD.MM'},
      majorLabels: {day: 'w'}
    }
  }

The following timeline is initialized with the 'de' locale and items are added with locally localized moment.js objects. The timeline locale can be switched to another locale at runtime. If you choose the 'en' locale, the week numbers will be calculated according to the US week calendar numbering scheme.