March 2018
Beginner to intermediate
422 pages
10h 33m
English
Tkinter is not a graphing tool. However, should you need to draw graphs with Tkinter, you can use the Canvas widget to draw graphs.
In this iteration, we will draw the following graphs:
The three graphs show up as follows:

Let's look at the pie chart first. You can easily create a pie chart in Tkinter using the Canvas widget's create_arc method.
The create_arc method has the following signature:
item_id = canvas.create_arc(x1, y1, x2, y2, option, ...)
Point (x1, y1) is the top-left corner and point (x2, y2) is the bottom-right ...