PythonQwt icon indicating copy to clipboard operation
PythonQwt copied to clipboard

Qt plotting widgets for Python (pure Python reimplementation of Qwt C++ library)

Results 15 PythonQwt issues
Sort by recently updated
recently updated
newest added

Hi, `QwtPlot.axisMaxMinor` and `QwtPlot.axisStepSize` access their respective attributes from `self.axisWidget(axisId)`. This results in these exceptions: ``` Traceback (most recent call last): File "/tmp/example.py", line 13, in plot.axisMaxMinor(qwt.QwtPlot.xBottom) File "/opt/conda/envs/bnpython/lib/python3.10/site-packages/qwt/plot.py", line...

Fixed the issue (#63) when stylesheets is introduced and `qwt.plot_canvas.QwtStyleSheetRecorder.drawRects` called with dynamic arguments. Function now checks if rects is a QRect or QRectF or treats it as a subscriptable...

Bumps [numpy](https://github.com/numpy/numpy) from 1.19.1 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

I'm writing this issue because the original qdial widget turned out to be just miserable, especially compared to qwtdial. It would be nice to add all the functionality of qwt.

enhancement
help wanted

I: pybuild base:237: xvfb-run -a --server-args="-screen 0 1024x768x24" python3.10 -m qwt.tests.__init__ Traceback (most recent call last): File "//qwt/null_paintdevice.py", line 249, in metric value = self.sizeMetrics().width() File "//qwt/graphic.py", line 386, in...

Hi, I'm using `setStyleSheet` in my PySide2 application. If I add a `QwtPlot` I get the following exception: ``` Traceback (most recent call last): File "C:\Users\user\project\venv\lib\site-packages\qwt\null_paintdevice.py", line 54, in drawRects...

emit a Signal if legend changed (QwtPlotItem must derive from QObject)

First of all thanks for making this library. Is it somehow possible to make line plots where the x-coordinates are Python datetime objects or Numpy datetime64 elements? I couldn't find...

Are there any plans to add a polar plot similar to QwtPolar? [http://qwtpolar.sourceforge.net/](url) ![image](https://cloud.githubusercontent.com/assets/3833799/22700059/2c340e44-ed0e-11e6-8864-bdeb44aa0d18.png)

enhancement
help wanted

I'm currently using auto-scaling for my X-axis, but I noticed that I'm still prevented from making the plot smaller beyond a certain point. It would be great if the axis...

question