Locked lesson.
About this lesson
We'll discuss how to add Surface Charts to your spreadsheet.
Exercise files
Download this lesson’s related exercise files.
35 - Surface Charts.docx61.5 KB 35 - Surface Charts SOLUTION.docx
58.9 KB
Quick reference
Surface Charts
In this video we'll look at Surface charts.
When to use
Use this whenever you need to create a Surface chart for your spreadsheet.
Instructions
# Import the charts
from openpyxl.chart import Reference, Series, SurfaceChart, SurfaceChart3D
from openpyxl.chart.axis import SeriesAxis
# Create a Chart instance
chart = SurfaceChart()
# Change to wireframe
chart.wireframe = True
Hints & tips
- from openpyxl.chart import Reference, Series, SurfaceChart, SurfaceChart3D
- from openpyxl.chart.axis import SeriesAxis
- chart.wireframe = True
Lesson notes are only available for subscribers.