pyvista.ChartBox.legend_visible#

property ChartBox.legend_visible[ソース]#

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

カスタムラベル付きの箱ひげ図を作成することができます.

>>> import pyvista as pv
>>> chart = pv.ChartBox([[0, 1, 1, 2, 3, 3, 4]])
>>> chart.plot.label = "Data label"
>>> chart.show()
../../../../_images/pyvista-ChartBox-legend_visible-1_00_00.png

凡例を隠します.

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