pyvista.Chart2D.legend_visible#

property Chart2D.legend_visible[ソース]#

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

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

>>> import pyvista as pv
>>> chart = pv.Chart2D()
>>> plot = chart.line([0, 1, 2], [2, 1, 3])
>>> plot.label = "My awesome plot"
>>> chart.show()
../../../../_images/pyvista-Chart2D-legend_visible-1_00_00.png

凡例を隠します.

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