# Time Scale - Combo Chart

const config = {
  type: 'line',
  data: data,
  options: {
    plugins: {
      title: {
        text: 'Chart.js Combo Time Scale',
        display: true
      }
    },
    scales: {
      x: {
        type: 'time',
        display: true,
        offset: true,
        time: {
          unit: 'day'
        }
      },
    },
  },
};

# Docs

Last Updated: 8/3/2022, 12:46:38 PM