Django开发WEB中,如何设置Chartist图表的X轴为时间轴

使用Chartist响应式图表的过程中,发现没法实现将X轴调整为时间!

官方示例X轴均为数字X轴!

new Chartist.Line('.ct-chart', {
  series: [[
    {x: 1, y: 100},
    {x: 2, y: 50},
    {x: 3, y: 25},
    {x: 5, y: 12.5},
    {x: 8, y: 6.25}
  ]]
}, {
  axisX: {
    type: Chartist.AutoScaleAxis,
    onlyInteger: true
  },
  axisY: {
    type: Chartist.FixedScaleAxis,
    ticks: [0, 50, 75, 87.5, 100],
    low: 0
  },
  lineSmooth: Chartist.Interpolation.step(),
  showPoint: false
});

想问问大家是如何实现,X轴为时间轴的

http://gionkunz.github.io/chartist-js/getting-started.html