Go to file
HashSplat f77d7409ba Fixed legend size after remove item
When the legend removed an item with a large label name the legend would not shrink in width. This fix uses the sample and label minimum width to allow the legend to shrink when an item is removed.
2017-09-12 17:15:26 -04:00
doc PyQtGraph release 0.10.0 2016-11-04 22:47:56 -07:00
examples Add check for EINTR during example testing; this should help avoid sporadic test failures on travis 2017-09-03 22:04:24 -07:00
pyqtgraph Fixed legend size after remove item 2017-09-12 17:15:26 -04:00
tools Merge pull request #414 from campagnola/canvas-fixes 2017-01-14 11:09:02 -08:00
.coveragerc MNT: hard code the coverage report location 2015-08-01 11:54:15 -04:00
.gitignore TST: Attempt 1 at breaking out ViewBox tests 2015-07-31 11:08:14 -04:00
.mailmap cleaner mailamp 2013-09-12 12:36:02 +08:00
.travis.yml Add scipy to travis requirements--some unit tests require this 2016-12-14 11:02:40 -08:00
CHANGELOG PyQtGraph release 0.10.0 2016-11-04 22:47:56 -07:00
CONTRIBUTING.txt Fix canvas classes for PyQt5 and PySide 2016-11-10 18:24:47 -08:00
LICENSE.txt - Major reorganization; we now follow the standard python package structure. 2012-12-26 17:51:52 -05:00
MANIFEST.in manifest corrections 2014-12-24 11:05:05 -05:00
README.md Update contributors list 2016-09-14 21:59:41 -07:00
setup.py fix optics demo on python3 2016-10-18 08:47:38 -07:00

Build Status codecov.io

PyQtGraph

A pure-Python graphics library for PyQt/PySide

Copyright 2012 Luke Campagnola, University of North Carolina at Chapel Hill

http://www.pyqtgraph.org

Maintainer

Contributors

  • Megan Kratz
  • Paul Manis
  • Ingo Breßler
  • Christian Gavin
  • Michael Cristopher Hogg
  • Ulrich Leutner
  • Felix Schill
  • Guillaume Poulin
  • Antony Lee
  • Mattias Põldaru
  • Thomas S.
  • Fabio Zadrozny
  • Mikhail Terekhov
  • Pietro Zambelli
  • Stefan Holzmann
  • Nicholas TJ
  • John David Reaver
  • David Kaplan
  • Martin Fitzpatrick
  • Daniel Lidstrom
  • Eric Dill
  • Vincent LeSaux

Requirements

  • PyQt 4.7+, PySide, or PyQt5
  • python 2.6, 2.7, or 3.x
  • NumPy
  • For 3D graphics: pyopengl and qt-opengl
  • Known to run on Windows, Linux, and Mac.

Support

Post at the mailing list / forum

Installation Methods

  • To use with a specific project, simply copy the pyqtgraph subdirectory anywhere that is importable from your project. PyQtGraph may also be used as a git subtree by cloning the git-core repository from github.
  • To install system-wide from source distribution: $ python setup.py install
  • For installation packages, see the website (pyqtgraph.org)
  • On debian-like systems, pyqtgraph requires the following packages: python-numpy, python-qt4 | python-pyside For 3D support: python-opengl, python-qt4-gl | python-pyside.qtopengl

Documentation

There are many examples; run python -m pyqtgraph.examples for a menu.

Some (incomplete) documentation exists at this time.

  • Easiest place to get documentation is at http://www.pyqtgraph.org/documentation
  • If you acquired this code as a .tar.gz file from the website, then you can also look in doc/html.
  • If you acquired this code via GitHub, then you can build the documentation using sphinx. From the documentation directory, run: $ make html

Please feel free to pester Luke or post to the forum if you need a specific section of documentation to be expanded.