# Point

const config = {
  type: 'line',
  data,
  options: {
    layout: {
      padding: {
        right: 10
      },
    },
    scales: {
      y: {
        beginAtZero: true,
        max: 120,
        min: 0
      }
    },
    plugins: {
      annotation: {
        clip: false,
        annotations: {
          annotation1,
          annotation2
        }
      }
    }
  }
};
Last Updated: 5/15/2023, 12:03:46 PM