0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

chart.js v2の凡例

Last updated at Posted at 2024-10-24

通常凡例はdatasetのlabelで設定された文字列が使用されます。これはグラフの中のポップアップでも使われます。

これらを別々に設定したい場合以下のような方法があります。

まずdatasetをconfigの中で定義します。

そしてoptions.legendを以下のようにします。

          legend: {
            labels: {
              generateLabels: function(chart) {
                labels = Chart.defaults.global.legend.labels.generateLabels(chart)
;
                labels[0].text = data.label[0] + ' average: ' + String(Math.round(ave * 10) / 10);
                return labels;
              }
            }
          },

これで、datasetのlabelを空にすると、こんな風になります。

chartjs_leg.png

系列が一つの時はポップアップのlabelはじゃまです。

datasetを後からpushするとうまくできませんでした。

chart.jsはバージョン間の互換がないので、他のバージョンではやり方が違うと思われます。

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?