3
2

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 5 years have passed since last update.

plotly.jsで円グラフを時計回りで表示する方法

Posted at

やりたいこと

plotly.jsで円グラフを作ってみたものの、なぜか反時計回りに表示されてしまうので、時計回りに表示する方法を調べました。

direction属性に'clockwise'を指定する

円グラフの「data」に「direction」属性を指定してあげます。

  • clockwise:時計回り
  • counterclockwise:反時計回り(デフォルト)
sample.js
var data = [{
    values: [50, 100, 70],
    labels: ['A', 'B', 'C'],
    type: 'pie',
    sort: true,     // 自動ソート
    direction: 'clockwise', // ←ココ (時計回り)
}]

var layout = {
    title: '円グラフ - 時計回り',
}

Plotly.newPlot('sample', data, layout);

デフォルトが反時計回りなので、何も指定しないと値が大きい順に反時計回りで割合が表示されます。

時計回りを指定すると、値が大きい順に時計回りで割合が表示されます。通常、こちらを使いますよね、

ビフォーアフター

before:
image.png

after:
image.png

参考文献

3
2
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
3
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?