A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/python/line-chart-in-pygal/ below:

Line chart in Pygal - GeeksforGeeks

Line chart in Pygal

Last Updated : 10 Jul, 2020

A

line chart

or

line graph

is a type of chart which helps to displays the information as a series of all data points called ‘markers’ and those markers are connected straight through line segments. It is a basic type of chart common in many fields which shows ascending or descending in a graph. A line chart is often used to visualize a trend in data over intervals of time which helps to represent the graph more effectively. Dimensions in the data are often displayed on the x-axis and y-axis.

Creating Line Chart1) Simple Line Chart:

Simple basic line graphs are used for showing the relationship between two variables in vertical form. Line() method is used to create simple line graphs in Pygal.

Syntax:
line_chart = pygal.Line()
Example: Python3 1==
# importing pygal
import pygal
import numpy


# creating line chart object
line_chart = pygal.Line()

# naming the title
line_chart.title = '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: 2) Horizontal line chart:

Horizontal line graph is the same as a basic line graph but the difference is it shows line horizontally from x-axis to y-axis. Both the variables are shown horizontally.

Syntax:
line_chart = pygal.HorizontalLine()
Example: Python3 1==
# importing pygal
import pygal
import numpy


# creating line chart object
line_chart = pygal.HorizontalLine()

# naming the title
line_chart.title = 'Horizontal 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:

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