pyvista.plotting.charts.PiePlot.line_width#
- property PiePlot.line_width[source]#
Return or set the line width of all lines drawn in this plot.
This is equivalent to accessing/modifying the width of this plot’s pen.
Examples
Set the line width to 10
>>> import pyvista as pv >>> chart = pv.ChartPie([4, 3, 2, 1]) >>> plot = chart.plot >>> plot.line_style = '-' # Make sure all lines are visible >>> plot.line_width = 10 >>> chart.show()