# Examples from pyvista.Chart2D.grid
# ==================================

# Create a 2D chart with the grid disabled.
import pyvista as pv
import numpy as np
x = np.linspace(0, 2 * np.pi, 20)
y = np.sin(x)
chart = pv.Chart2D()
_ = chart.line(x, y, color='r')
chart.grid = False
chart.show()

# Enable the grid
chart.grid = True
chart.show()

# ----------------------------------------------------------------------
# Generated by sphinx-examples-as-code https://github.com/pyvista/sphinx-examples-as-code

