ChartPie.title#
Examples#
Download Python source code | Download Jupyter notebook
Create a pie chart with title ‘My Chart’.
>>> import pyvista as pv
>>> chart = pv.ChartPie([5, 4, 3, 2, 1])
>>> chart.title = 'My Chart'
>>> chart.show()
Download Python source code | Download Jupyter notebook
Create a pie chart with title ‘My Chart’.
>>> import pyvista as pv
>>> chart = pv.ChartPie([5, 4, 3, 2, 1])
>>> chart.title = 'My Chart'
>>> chart.show()