Python | Plotting charts in excel sheet using openpyxl module | Set 1 (original) (raw)

Last Updated : 04 Jul, 2022

Prerequisite: Reading & Writing to excel sheet using openpyxl Openpyxl is a Python library using which one can perform multiple operations on excel files like reading, writing, arithmetic operations and plotting graphs. Let’s see how to plot different charts using realtime data. Charts are composed of at least one series of one or more data points. Series themselves are comprised of references to cell ranges. For plotting the charts on an excel sheet, firstly, create chart object of specific chart class( i.e BarChart, LineChart etc.). After creating chart objects, insert data in it and lastly, add that chart object in the sheet object.

Code #1 : Plot the Bar Chart For plotting the bar chart on an excel sheet, use BarChart class from openpyxl.chart submodule.

Python3

import openpyxl

from openpyxl.chart import BarChart,Reference

wb = openpyxl.Workbook()

sheet = wb.active

for i in range ( 10 ):

`` sheet.append([i])

values = Reference(sheet, min_col = 1 , min_row = 1 ,

`` max_col = 1 , max_row = 10 )

chart = BarChart()

chart.add_data(values)

chart.title = " BAR - CHART "

chart.x_axis.title = " X_AXIS "

chart.y_axis.title = " Y_AXIS "

sheet.add_chart(chart, "E2")

wb.save("barChart.xlsx")

Output: Code #2 : Plot the 3D Bar Chart For plotting the 3D bar chart on an excel sheet, use BarChart3D class from openpyxl.chart submodule.

Python3

import openpyxl

from openpyxl.chart import BarChart3D,Reference

for i in range ( 10 ):

`` sheet.append([i])

values = Reference(sheet, min_col = 1 , min_row = 1 ,

`` max_col = 1 , max_row = 10 )

chart = BarChart3D()

chart.add_data(values)

chart.title = " BAR - CHART3D "

chart.x_axis.title = " X AXIS "

chart.y_axis.title = " Y AXIS "

sheet.add_chart(chart, "E2")

wb.save("BarChart3D.xlsx")

Output: Code #3 : Plot the Area Chart For plotting the Area chart on an excel sheet, use AreaChart class from openpyxl.chart submodule.

Python3

import openpyxl

from openpyxl.chart import AreaChart,Reference

wb = openpyxl.Workbook()

sheet = wb.active

for i in range ( 10 ):

`` sheet.append([i])

values = Reference(sheet, min_col = 1 , min_row = 1 ,

`` max_col = 1 , max_row = 10 )

chart = AreaChart()

chart.add_data(values)

chart.title = " AREA - CHART "

chart.x_axis.title = " X - AXIS "

chart.y_axis.title = " Y - AXIS "

sheet.add_chart(chart, "E2")

wb.save("AreaChart.xlsx")

Output: Code #4 : Plot the 3D Area Chart For plotting the 3D Area chart on an excel sheet, use AreaChart3D class from openpyxl.chart submodule.

Python3

import openpyxl

from openpyxl.chart import AreaChart3D,Reference

wb = openpyxl.Workbook()

sheet = wb.active

for i in range ( 10 ):

`` sheet.append([i])

values = Reference(sheet, min_col = 1 , min_row = 1 ,

`` max_col = 1 , max_row = 10 )

chart = AreaChart3D()

chart.add_data(values)

chart.title = " AREA - CHART3D "

chart.x_axis.title = " X - AXIS "

chart.y_axis.title = " Y - AXIS "

sheet.add_chart(chart, "E2")

wb.save("AreaChart3D.xlsx")

Output: Code #5 : Plot a Line Chart. For plotting the Line chart on an excel sheet, use LineChart class from openpyxl.chart submodule.

Python3

import openpyxl

from openpyxl.chart import LineChart,Reference

wb = openpyxl.Workbook()

sheet = wb.active

for i in range ( 10 ):

`` sheet.append([i])

values = Reference(sheet, min_col = 1 , min_row = 1 ,

`` max_col = 1 , max_row = 10 )

chart = LineChart()

chart.add_data(values)

chart.title = " LINE - CHART "

chart.x_axis.title = " X - AXIS "

chart.y_axis.title = " Y - AXIS "

sheet.add_chart(chart, "E2")

wb.save("LineChart.xlsx")

Output: Code #6 : Plot a 3D Line Chart. For plotting the 3D Line chart on an excel sheet we have to use LineChart3D class from openpyxl.chart submodule.

Python3

import openpyxl

from openpyxl.chart import LineChart3D,Reference

wb = openpyxl.Workbook()

sheet = wb.active

for i in range ( 10 ):

`` sheet.append([i])

values = Reference(sheet, min_col = 1 , min_row = 1 ,

`` max_col = 1 , max_row = 10 )

chart = LineChart3D()

chart.add_data(values)

chart.title = " LINE - CHART3D "

chart.x_axis.title = " X - AXIS "

chart.y_axis.title = " Y - AXIS "

sheet.add_chart(chart, "E2")

wb.save("LineChart3D.xlsx")

Output: