#配置とタイトルの位置

このサンプルでは、​​グラフの凡例の配置とタイトルの位置を構成する方法を示します。

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

#ドキュメント

最終更新: 2023 年 4 月 28 日、午前 5 時 18 分 20 秒