pyvista.Chart2D.border_width#
- property Chart2D.border_width[source]#
- Return or set the chart’s border width. - Examples - Create a 2D chart with a thick, dashed red border. - >>> import pyvista as pv >>> chart = pv.Chart2D() >>> plot = chart.line([0, 1, 2], [2, 1, 3]) >>> chart.border_color = 'r' >>> chart.border_width = 5 >>> chart.border_style = '--' >>> chart.show(interactive=False) 