Last Updated : 28 Jul, 2020
Pygalis 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.
Donut ChartA
donut pie chartessential a pie chart which has a hole in the center of the pie which makes the difference between the pie and the donut pie. This can be created using the Pie() method of the pygal module passing the parameter inner radius. The inner radius parameter should be set to a number between 0 and 1, commensurate to the ratio of radii between the hole and the chart.
Syntax:pie_chart = pygal.Pie(inner_radius=.4)Example 1: Python3 1==
# importing pygal
import pygal
# creating line chart object
pie_chart = pygal.Pie(inner_radius = .4)
# naming the title
pie_chart.title = 'Donut chart'
# random data
pie_chart.add('A', 10)
pie_chart.add('B', 20)
pie_chart.add('C', 30)
pie_chart.add('D', 40)
pie_chart
Output: Example 2: Python3 1==
# importing pygal
import pygal
# creating line chart object
pie_chart = pygal.Pie(inner_radius = .6)
# naming the title
pie_chart.title = 'Donut chart'
# adding lines
pie_chart.add('A', 115)
pie_chart.add('B', 322)
pie_chart.add('C', 834)
pie_chart.add('D', 21)
pie_chart
Output:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4