PiChart has 4 classes:
Create a chart by creating a new Chart object. You'll need to provide a display object, from the picographics library. PicoGraphics is built into the Pimoroni MicroPython build.
# Import a graphics driver
from picographics import PicoGraphics, DISPLAY_PICO_EXPLORER
# Create a display
display = PicoGraphics(display=DISPLAY_PICO_EXPLORER)
# Create a new Chart and pass it the display
my_chart = Chart(display)
The data point is the small circle that represents the data value. The data point radius is the size of the point drawn on the chart.