# Outside of chart

const config = {
  type: 'line',
  data,
  options: {
    layout: {
      padding: {
        right: 50
      }
    },
    scales: {
      y: {
        stacked: true
      }
    },
    plugins: {
      annotation: {
        clip: false,
        annotations: {
          annotation
        }
      }
    }
  }
};
Last Updated: 5/15/2023, 12:03:46 PM