# Alignment

This sample show how to configure the alignment of the chart title

const config = {
  type: 'line',
  data: data,
  options: {
    plugins: {
      title: {
        display: true,
        text: 'Chart Title',
      }
    }
  }
};
Last Updated: 12/5/2021, 1:41:45 PM