pyvista.ChartPie.legend_visible#

property ChartPie.legend_visible[ソース]#

チャートの凡例の表示を返すか設定します.

カスタムラベル付きの円チャートを作成することができます.

>>> import pyvista as pv
>>> chart = pv.ChartPie([5, 4, 3, 2, 1])
>>> chart.plot.labels = ["A", "B", "C", "D", "E"]
>>> chart.show()
../../../../_images/pyvista-ChartPie-legend_visible-1_00_00.png

凡例を隠します.

>>> chart.legend_visible = False
>>> chart.show()
../../../../_images/pyvista-ChartPie-legend_visible-1_01_00.png