# Alignment and Title Position

This sample show how to configure the alignment and title position of the chart legend.

const config = {
  type: 'line',
  data: data,
  options: {
    plugins: {
      legend: {
        title: {
          display: true,
          text: 'Legend Title',
        }
      }
    }
  }
};

# Docs

Last Updated: 2/28/2024, 4:43:58 PM