# Line Chart

const config = {
  type: 'line',
  data,
  options: {
    scales: {
      x: {
        type: 'linear',
        bounds: 'data'
      }
    },
    plugins: {
      annotation: {
        annotations: {
          annotation1,
          annotation2,
          annotation3
        }
      }
    },
  }
};
Last Updated: 5/15/2023, 12:03:46 PM