Locked lesson.
About this lesson
Let's show how to add Radar Charts to your spreadsheet.
Exercise files
Download this lesson’s related exercise files.
33 - Radar Charts.docx61.5 KB 33 - Radar Charts SOLUTION.docx
58.8 KB
Quick reference
Radar Charts
In this video we'll look at Radar Charts.
When to use
Use this whenever you'd like to add a Radar chart to your spreadsheet.
Instructions
# Import the charts
from openpyxl.chart import Reference, Series, RadarChart
# Create a Chart instance
chart = RadarChart()
# Change the Chart Type:
chart.type = 'filled'
# Delete our y axis
chart.y_axis.delete = True
Hints & tips
- chart = RadarChart()
- chart.type = 'filled'
- chart.y_axis.delete = True
Lesson notes are only available for subscribers.