Saturday, October 25, 2025
HomeLanguagesStacked Line chart in Pygal

Stacked Line chart in Pygal

Pygal is a Python module that is mainly used to build SVG (Scalar Vector Graphics) graphs and charts. SVG is a vector-based graphics in the XML format that can be edited in any editor. Pygal can create graphs with minimal lines of code that can be easy to understand and write.

Stacked line chart

A stacked line chart is a line chart in which lines never overlap because they amplify to each other points. Values are represented on the y-axis and categories are displayed on the x-axis. But the stacked line chart cannot present positive and negative value at the same time. Rendering helps to represent the graph more effectively.

Syntax:

line_chart = pygal.StackedLine(fill=True)

Example 1:




# importing pygal
import pygal
import numpy
  
  
# creating line chart object
line_chart = pygal.StackedLine(fill ="True")
  
# naming the title
line_chart.title = 'Stacked Line chart'
  
  
# adding lines
line_chart.add('A', numpy.random.rand(5))
line_chart.add('B', numpy.random.rand(5))
line_chart.add('C', numpy.random.rand(5))
line_chart.add('D', numpy.random.rand(5))
  
line_chart


Output:

Example 2:




# importing pygal
import pygal
import numpy
  
  
# creating line chart object
line_chart = pygal.StackedLine()
  
# naming the title
line_chart.title = 'Stacked Line chart'
  
  
# adding lines
line_chart.add('A', numpy.random.rand(5))
line_chart.add('B', numpy.random.rand(5))
line_chart.add('C', numpy.random.rand(5))
line_chart.add('D', numpy.random.rand(5))
  
line_chart


Output:

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS