PyqtGraph Tutorial How To Create Legend

In this PyqtGraph Tutorial i want to show you How To Create Legend.

before this we had some articles on PyqtGraph , so you can check the articles in the below link.

 

1: Pyqtgraph Introduction, Installation & Drawing First Line

2: How to Draw Scatter Plot in Pyqtgraph 

3: How to Plot BarGraph in PyqtGraph

4: How to Plot Data Curves in PyqtGraph

 

 

What are Legends ?

Legends are a useful way to label data series plotted on a graph. These examples show how to create a legend and make some common modifications,

 

 

So now this is the complete code for PyqtGraph Tutorial How To Create Legend

 

 

 

 

OK in the above code these are the imports that we need, basically PyQt5 with PyqtGraph.

 

 

 

Every PyQt5 application must create an application object. The sys.argv parameter is a list of arguments from a command line.

Python scripts can be run from the shell. It is a way how we can control the startup of our scripts.

 

 

 

In this code we have created pg.plot(), also we have given a title to our graph, after that we added the legend to our graph

 

 

 

These are our data that we want to plot

 

 

 

 

Finally, we enter the mainloop of the application. The event handling starts from this point. The mainloop receives events from the window system and dispatches

them to the application widgets. The mainloop ends if we call the exit() method or the main widget is destroyed.

The sys.exit()method ensures a clean exit. The environment will be informed how the application ended.

The exec_() method has an underscore. It is because the exec is a Python keyword. And thus, exec_() was used instead.

 

 

 

So after runing the complete complete code this will be the result

 

PyqtGraph Tutorial How To Create Legend
PyqtGraph Tutorial How To Create Legend

 

 

 

 

Also you can watch the complete video for this article 

 

Subscribe and Get Free Video Courses & Articles in your Email

 

Codeloop
Share via
Copy link
Powered by Social Snap
×