0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Chart.jsのラベルをグラフ(pie)の中で表示させる

Posted at

1.はじめに

chartjs-plugin-datalabelsを使用していきます。

chart.jsのバージョンはchart.js@3.x以降が必要です。
本記事ではchart.js@3.0.0使用しています。

基本的な円グラフの、サンプル(chart.html)を示します。

chat.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="https://code.jquery.com/jquery-3.6.4.js"></script>
  <title>Chart.js</title>
</head>
<body>
  <h1>円グラフ</h1>
  <canvas id="myPieChart">

  <script src="https://cdn.jsdelivr.net/npm/chart.js@3.0.0/dist/chart.min.js"></script>
  <script>
    const ctx = document.getElementById("myPieChart");
    const myPieChart = new Chart(ctx, {
      type: 'pie', // 円グラフを使用
      data: {
        labels: ["A型", "O型", "B型", "AB型"],
        datasets: [{
          backgroundColor: [
            "#BB5179",
            "#FAFF67",
            "#58A27C",
            "#3C00FF"
          ],
          data: [38, 31, 21, 10]
        }]
      },
      options: {
          }
    });
  </script>
</body>
</html>

スクリーンショット 2023-03-13 23.28.08.png

2.chartjs-plugin-datalabelsを適用してグラフ上に文字を表示

こちらchartjs-plugin-datalabelsの公式サイトになります。
https://chartjs-plugin-datalabels.netlify.app/guide/#table-of-contents

<script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0 "><script>
をchart.jライブラリ下に追加

[ChartDataLabels]をプラグインオプションとして追加

chart.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="https://code.jquery.com/jquery-3.6.4.js"></script>
  <title>Chart.js</title>
</head>
<body>
  <h1>円グラフ</h1>
  <canvas id="myPieChart">

  <script src="https://cdn.jsdelivr.net/npm/chart.js@3.0.0/dist/chart.min.js"></script>
+ <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0 "></script>
  <script>
    const ctx = document.getElementById("myPieChart");
    const myPieChart = new Chart(ctx, {
      type: 'pie', // 円グラフを使用
      data: {
        labels: ["A型", "O型", "B型", "AB型"],
        datasets: [{
          backgroundColor: [
            "#BB5179",
            "#FAFF67",
            "#58A27C",
            "#3C00FF"
          ],
          data: [38, 31, 21, 10]
        }]
      },
+     plugins: [ChartDataLabels], // pluginとしてchartdatalabelsを追加
      options: {
        }
    });
  </script>
</body>
</html>

ここまででグラフ上に文字(パーセンテージ)が追加されている
スクリーンショット 2023-03-13 23.56.19.png

3.パーセンテージをラベルに変更

次にパーセンテージを文字に変更するための記述をしていきます。
公式をみてみると

smple.js
new Chart('id', {
  type: 'bar',
  data: {
    labels: ['foo', 'bar'],
    datasets: [{
      data: [42, 24]
    }]
  },
  options: {
    plugins: {
      datalabels: {
        formatter: function(value, context) {
          return context.chart.data.labels[context.dataIndex];
        }
      }
    }
  }
});

とあるので参考にして追加します。

chart.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="https://code.jquery.com/jquery-3.6.4.js"></script>
  <title>Chart.js</title>
</head>
<body>
  <h1>円グラフ</h1>
  <canvas id="myPieChart">

  <script src="https://cdn.jsdelivr.net/npm/chart.js@3.0.0/dist/chart.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0 "></script>
  <script>
    const ctx = document.getElementById("myPieChart");
    const myPieChart = new Chart(ctx, {
      type: 'pie', // 円グラフを使用
      data: {
        labels: ["A型", "O型", "B型", "AB型"],
        datasets: [{
          backgroundColor: [
            "#BB5179",
            "#FAFF67",
            "#58A27C",
            "#3C00FF"
          ],
          data: [38, 31, 21, 10]
        }]
      },
      plugins: [ChartDataLabels], // pluginとしてchartdatalabelsを追加
      options: {
+       plugins: {
+         datalabels: { // パーセンテージからラベル表記に変更
+           formatter: function(value, context) { 
+             return context.chart.data.labels[context.dataIndex];
+           }
+         }
+       }
      }
    });
  </script>
</body>
</html>

これでグラフ上の文字がラベルに変更されています
スクリーンショット 2023-03-14 0.06.11.png

4.文字サイズ、色の変更

このままだと文字サイズだったり色が気になるので修正していきます。

こちら修正コードです。

chart.html
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <script src="https://code.jquery.com/jquery-3.6.4.js"></script>
  <title>Chart.js</title>
</head>
<body>
  <h1>円グラフ</h1>
  <canvas id="myPieChart">

  <script src="https://cdn.jsdelivr.net/npm/chart.js@3.0.0/dist/chart.min.js"></script>
  <script src="https://cdn.jsdelivr.net/npm/chartjs-plugin-datalabels@2.0.0 "></script>
  <script>
    const ctx = document.getElementById("myPieChart");
    const myPieChart = new Chart(ctx, {
      type: 'pie', // 円グラフを使用
      data: {
        labels: ["A型", "O型", "B型", "AB型"],
        datasets: [{
          backgroundColor: [
            "#BB5179",
            "#FAFF67",
            "#58A27C",
            "#3C00FF"
          ],
          data: [38, 31, 21, 10]
        }]
      },
      plugins: [ChartDataLabels], // pluginとしてchartdatalabelsを追加
      options: {
        plugins: {
          datalabels: { // パーセンテージからラベル表記に変更
            formatter: function(value, context) { 
              return context.chart.data.labels[context.dataIndex];
            },

+           color:"#000", 
+           font: { // フォント設定
+             weight: "bold", // ラベル表記を太字に変更
+             size: 24, // サイズ変更
            }
          }
        }
      }
    });
  </script>
</body>
</html>

見やすくなったのでよし!!
スクリーンショット 2023-03-14 0.18.31.png

5.おわりに

長くなりましたがこれで終わりです。

執筆経緯ですが、chart.jsの記事が思ったとおりに見つからなかったため、執筆いたしました。

chartjs-plugin-labelsといった同じような機能のプラグインもあるので混同しないように注意が必要かと。

0
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?