pyvista.ChartMPL.title#

property ChartMPL.title[ソース]#

チャートのタイトルを返すか設定します.

'My Chart' というタイトルでmatplotlibチャートを作成します.

>>> import pyvista as pv
>>> import matplotlib.pyplot as plt
>>> f, ax = plt.subplots()
>>> _ = ax.plot([0, 1, 2], [2, 1, 3])
>>> chart = pv.ChartMPL(f)
>>> chart.title = 'My Chart'
>>> chart.show()
../../../../_images/pyvista-ChartMPL-title-1_01_00.png