ChartBox.border_color#
Examples#
Download Python source code | Download Jupyter notebook
Create a boxplot chart with a thick, dashed red border.
>>> import pyvista as pv
>>> chart = pv.ChartBox([[0, 1, 1, 2, 3, 3, 4]])
>>> chart.border_color = 'r'
>>> chart.border_width = 5
>>> chart.border_style = '--'
>>> chart.show(interactive=False)
Used In#
Docstring Examples
ChartBox.active_border_color(1 use)ChartBox.border_style(1 use)ChartBox.border_width(1 use)