Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
73 views

I am writing an application in pyside6 and using pyqtgraph's imageitem & colorbar for displaying plots. The simplified requirement is The y-axis has a value between 0 and 2, representing 3 states ...
Kishore Kumar S's user avatar
2 votes
0 answers
71 views

I am trying to develop a gui to receive data over udp with rate of 72Mbit/s. I am using the pyqtgraph to plot the data of 10 channels. but after receiving some packets, the widow freezes and it seems ...
Adele's user avatar
  • 11
0 votes
0 answers
64 views

Is there a way to have scatter points with GLScatterPlotItem but with shapes like triangles, squares, etc
THATS MY QUANT MY QUANTITATIVE's user avatar
0 votes
1 answer
55 views

I am trying to paint pyqtgraph.opengl.GLLinePlotItem nested within other GLLinePlotItem with different parents, where the painted result is identical had you not nested them and instead just painted ...
THATS MY QUANT MY QUANTITATIVE's user avatar
0 votes
0 answers
46 views

I have a large gui app based on matplotlib which is horribly slow (on windows) so I am trying to re-host it on pyqtgraph (which seems to be much faster). I am facing the following problem: I need to ...
sds's user avatar
  • 60.5k
0 votes
1 answer
66 views

Is it possible to give a gradient background to a plot in pyqtgraph & pyqt6? Minimal code to start with: import pyqtgraph as pg from PyQt6.QtWidgets import QApplication # Create application app = ...
Nick Skywalker's user avatar
0 votes
0 answers
31 views

I am working on a PySide6 application and am implementing a PyQtGraph in a layout. I want to use PyQtGraph instead of Matplotlib because apperently it would be better to use it for interactive graph (...
B O's user avatar
  • 7
0 votes
2 answers
121 views

I am using pyqtgraph but whatever I am doing I am stuck with the following bug: for any plots, axes and plot is flickering and I cannot see anything. I put a GIF to show my problem and the ...
val's user avatar
  • 11
0 votes
1 answer
51 views

I am using pyqtgraph 0.13.7 and PyQt5 5.15.9 and attempting to render text using GLTextItem in a 3D graphical interface, but the text is not displaying. Other 3D elements (such as axes, point clouds, ...
cruze Oliver's user avatar
1 vote
2 answers
569 views

I am trying the example from PythonGUIs website using this script: from PySide6.QtWidgets import QApplication, QMainWindow import pyqtgraph as pg import sys class MainWindow(QMainWindow): def ...
rawks's user avatar
  • 13
0 votes
1 answer
163 views

I'm using pyqtgraph 0.13.7. I would like to rotate 45 degrees counter clockwise the text labels on my x_axis. How can I do that?
Ed Schneider's user avatar
0 votes
0 answers
94 views

I am trying to make a QWidget wrapper class which has a pyqtgraph.PlotWidget within it to plot my data. But when I add labels into my graph, it somehow gets cut off or clipped at the edge of the ...
Aldric Goh's user avatar
0 votes
0 answers
54 views

Is there any function similar to matplotlib.pyplot.streamplot in pyqtgraph? I am using a UI for data analysis and would really benefit if I could overplot it with streamlines. Unfortunately, all I ...
ahermann's user avatar
0 votes
1 answer
66 views

I am trying to remove the banner effect from the pyqtgraph.opengl.GLTextItem such that whenever the camera angle changes, the angle of the text item is fixed. I can get the size of the text item to be ...
THATS MY QUANT MY QUANTITATIVE's user avatar
1 vote
0 answers
62 views

When I place a PyQtGraph PlotWidget with ROIs inside a QGraphicsProxyWidget, the ROIs don't respond to some of the mouse interactions. Except the hover events, no operations work with the ROI e.g. ...
Imaduddin Sheikh's user avatar
0 votes
1 answer
283 views

What is an efficient method for plotting data with pyqtgraph for a rolling plot when samples arrive one at at time from an upstream process? Based on some experimentation, plotting each sample as it ...
BigBrownBear00's user avatar
0 votes
0 answers
94 views

I am having issues with how pyqtgraph.opengl.GLScatterPlotItem is rendered. It seems that when adding GLScatterPlotItem to gl.GLViewWidget before showing the QMainWindow, the scatter plot never ...
THATS MY QUANT MY QUANTITATIVE's user avatar
1 vote
0 answers
92 views

I'm trying to make a representation of a RTL-SDR capture. I can show a couple of graphs, spectrum and waterfall with their histogram. The problem is that the histogram auto-adjusts the levels. I would ...
Shortwave Coder's user avatar
0 votes
0 answers
92 views

I am trying to use pyqtgraphs DateAxisItem for relative times on the x axis, i.e., durations (which can be between a few hours and several days). I know I could simply use an ordinary AxisItem and ...
emma's user avatar
  • 337
-1 votes
1 answer
95 views

When importing ShaderProgram, VertexShader, and FragmentShader, I cannot get them to display my GLMeshItem. I connect my shader to my GLMeshItem the way I see online in a very old forum: gl.shaders....
Fire 'N Lightnin''s user avatar
0 votes
1 answer
209 views

I want to open a window with pyqtgraph alone, without using pyqt. I want to create two or more axes in one window through pyqtgraph, and draw two lines in one ax. What should I do? The following code ...
white.seolpyo.com's user avatar
0 votes
1 answer
97 views

The code below plots numbers received from serial port. However, the values of locals()[self.axes_mapping[axis]] are not all the received data from the function receive_data. It seems some values are ...
JOSEPH129009's user avatar
0 votes
0 answers
54 views

I'm trying to plot 10-100Hz datas coming from a distance meter sensor over a USB/serial interface on a raspberry. I can read datas like this: value = ser.readline().decode('utf-8') data = value.split(&...
Lionel Fichen's user avatar
0 votes
1 answer
73 views

I'm trying to change the background/border color of a pyqtgraph.ScaleBar, because I would like it to have a black border with a white, non-transparent background. The main aim is to achieve a scalebar ...
DavidG's user avatar
  • 1
0 votes
1 answer
150 views

I would like to add labels to a 3D axis drawn in GLViewWidget from pyqtgraph.opengl. I followed the example but did not manage to make it work properly. When I subclass the GLViewWidget object and ...
New2coding's user avatar
-1 votes
1 answer
149 views

I am using a horizontal line as follows in pyqtgraph. If I set the position of the label to 0.05, then it hugs the y axis with the default graph size. However, if I resize the graph there is an offset....
mr_js's user avatar
  • 1,019
1 vote
0 answers
50 views

I would like to ask whether it is possible to use Pyqtgraph in flask for plotting graphs. My simplified code: pg_layout = pg.GraphicsLayoutWidget( title=title, size=(2880, 960) ) ...
thomas chiu's user avatar
2 votes
1 answer
138 views

code: self.graph = pg.PlotWidget(self) self.graph.setBackground("w") self.graph.showGrid(x=True, y=True) pen = pg.mkPen(color=(90, 169, 240), width=5) ...
Icold's user avatar
  • 21
0 votes
1 answer
51 views

I want to display my data by pyatgraph, mostly because of an easy FFT method it provides. I wrote an GUI by Qt Designer and created pyqtgraph in it. The problem occurs when I try to plot my data. The ...
Arandiel's user avatar
2 votes
1 answer
118 views

I have a Qt5 window with a pyqtgraph in a dynamic situation, i.e., plots, axes, curves can be added or modified. Also, the legend can be shown and hidden. Since the user can also drag the legend to a ...
emma's user avatar
  • 337
0 votes
1 answer
339 views

I want to have the auto-scale button that is normally in the bottom left hand corner and OUTSIDE of each subplot for a pyqtgraph, but rather than auto-scaling to fit the data, scale to a specific ...
Xerium's user avatar
  • 11
0 votes
2 answers
588 views

I am trying to add padding around a PlotWidget as the default settings are extremely tight. However, the strategies I am trying to take are not working. The default padding is seen below. default ...
user22960591's user avatar
0 votes
1 answer
363 views

I am trying to programmatically add and remove plots to GraphicsLayoutWidget. Adding works as expected via addPlot(row, col) (col is zero for me). Unfortunately there is no removePlot function (which ...
emma's user avatar
  • 337
2 votes
1 answer
194 views

PyQtGraph's ImageView widget includes a histogram with: a moveable region that defines dark and light levels. as well as the ability to edit a colour gradient. These two features allow users to edit/...
Kyle F. Hartzenberg's user avatar
0 votes
1 answer
81 views

I try to deselect a curve by clicking on the background in a pyqtgraph. So when I click on a curve, it is selecting it and when I click on the background or the curve again, it should deselect it. If ...
Souleater's user avatar
1 vote
0 answers
199 views

I am using pyqtgraph.opengl for graphics and display of STL files on my UI. I am using phong shading technique called 'shaded' param with pyqtgraph.opengl.GLMeshItem API. But I am having a dark color ...
Nagarjun Vinukonda's user avatar
1 vote
0 answers
31 views

I want to align the line indicating the start of the Y axis. As you can see in the image the middle plot is out of line with the top and bottom plot. Apparently because they take up varying amount ...
BAR's user avatar
  • 17.5k
0 votes
1 answer
112 views

I'm using pyqtgraph to plot radar data (in 2D and 3D) using a GLViewWidget. Adding and visualizing the data in 2D and 3D works well. I also added text labels using GLTextItem, but they are a bit ...
Schwefelsaeure's user avatar
0 votes
1 answer
52 views

I have an dataframe, i import this dataframe in an python modul and then i plott them live. Each dataframe has 100 numbers. For this i use pyqtgraph: def update_plot_data(self): from ...
tenebris in kux's user avatar
-1 votes
1 answer
142 views

Does anyone have a converter that takes working plots created with matplotlib and produce a reasonable equivalent in pyqtgraph? Seems like it should be possible. It would save me a lot of time. I'm ...
Ed Schneider's user avatar
2 votes
0 answers
946 views

I am creating PySide6 app and I need to plot a vast amount of sensor data. The aim is that user has the feeling that the system is working real-time-ish. For example, if they tap a table next to an ...
Piotr Herbut's user avatar
0 votes
0 answers
37 views

In Pyqtgraph, I want to create a line whose midpoint is specified, and by dragging and resizing the line, the midpoint will also change. please help me. pyqtgraph specifying the midpoint of a line I ...
patoghfa's user avatar
0 votes
1 answer
317 views

I try to plot a chart with dates in the x-axis. But the units displayed are in hours and minutes. import sys import datetime import pyqtgraph as pg from PySide6.QtWidgets import QApplication, ...
Vik's user avatar
  • 345
0 votes
1 answer
129 views

I want to plot 5 graphs on a single canvas. If i click the next button ,it should display the next graph ,and all graphs should be dynamic using PyQt5 class Window(QWidget): def __init__(self): ...
Varsha Hegde's user avatar
0 votes
0 answers
46 views

I am trying to write a real-time serial data reading and ploting APP, which read data from a arduino UNO board. But there is a problem that after more 10000 dataponits readout, the ploting presents a ...
郑英杰's user avatar
0 votes
0 answers
28 views

I'm trying to implement a spectrograph following This question for guidance. However, one of the called function of ImageItem seems to be "missing". In the linked question, there is this ...
ThePumkinMelon's user avatar
0 votes
1 answer
54 views

I am drawing using QgraphicsLineItem such that after reaching certain length, it should give me fading effect for the line. So, the basic way I had used is appending its objects to a list and later ...
Soham Utekar's user avatar
0 votes
1 answer
251 views

I want to display a 3D matrix in Pyqtgraph using GLVolumeItem (with x, y and z axis) with the specific colors corresponding to the input data. How can I proceed with my code ? import numpy as np ...
Mo0nKizz's user avatar
  • 322
0 votes
0 answers
49 views

I am trying to get a QFormLayout() next to a GLViewWidget() in a QVBoxLayout() in QMainWindow() using the below code. However, I struggle to find out how to display both at once, I can only display ...
New2coding's user avatar
0 votes
0 answers
86 views

I am trying to produce a GUI using PyQT6 to interface a camera with a pyqtgraph viewer. I created three classes, one for the QT interface (CharacViewer), one for the camera (cameraClass) and one for ...
Paul J. M.'s user avatar

1
2 3 4 5
21