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() 凡例を隠します. >>> chart.legend_visible = False >>> chart.show()