# Interaction

const config = {
  type: 'line',
  data,
  options: {
    scales: {
      y: {
        beginAtZero: true,
        min: 0,
        max: 100
      }
    },
    plugins: {
      title: {
        display: true,
        text: getTitle,
        position: 'bottom',
        font: {
          size: 14
        }
      },
      annotation: {
        annotations: {
          annotation1,
          annotation2
        }
      }
    }
  }
};
Last Updated: 5/15/2023, 12:03:46 PM