Go to file
Luke Campagnola 2e79185d2f Features:
- Added GraphItem class for displaying networks/trees
  - Added ColorMap class for mapping linear gradients and generating lookup tables
    (Provides gradient editor functionality without the GUI)
  - Added ColorMapWidget for complex user-defined color mapping
  - Added ScatterPlotWidget for exploring relationships in multi-column tables
  - Added ErrorBarItem
  - SVG and image exporters can now copy to clipboard
  - PlotItem gets new methods: addLine, setLabels, and listDataItems
  - AxisItem gets setTickFont method
  - Added functions.arrayToQPath, shared between GraphItem and PlotCurveItem
  - Added gradient editors to parametertree
  - Expanded documentation, added beginning of Qt crash course

Bugfixes:
  - Fixed auto-ranging bugs: ViewBox now properly handles pixel-padding around data items
  - ViewBox ignores bounds of zoom-rect when auto ranging
  - Fixed AxisItem artifacts
  - Fixed GraphicsItem.pixelVector caching bugs and simplified workaround for fp-precision errors
  - LinearRegionItem.hoverEvent obeys 'movable' flag                                                                                                                                         
  - Fixed PlotDataItem nan masking bugs                                                                                                                                                      
  - Workaround for segmentation fault in QPainter.drawPixmapFragments                                                                                                                        
  - multiprocess and RemoteGraphicsView work correctly in Windows.                                                                                                                           
  - Expanded python 3 support                                                                                                                                                                
  - Silenced weave errors by default                                                                                                                                                         
  - Fixed " 'win' in sys.platform " occurrences matching 'darwin' (duh)
  - Workaround for change in QImage API (PyQt 4.9.6)
  - Fixed axis ordering bug in GLScatterPlotItem
2013-02-14 08:29:11 -05:00
doc merged many new features from ACQ4 2013-02-10 17:45:16 -05:00
examples Fixed GLSurfacePlot bug 2013-02-13 17:11:47 -05:00
pyqtgraph Fixed GLSurfacePlot bug 2013-02-13 17:11:47 -05:00
tests SVG export fixes 2012-12-26 13:48:12 -05:00
tools examples fix -- prevent adding invalid entry to sys.path while searching for pyqtgraph 2012-12-29 21:51:29 -05:00
LICENSE.txt - Major reorganization; we now follow the standard python package structure. 2012-12-26 17:51:52 -05:00
MANIFEST.in MANIFEST.in includes some missing files: tools, README, LICENSE 2012-12-29 01:40:41 -05:00
README.txt - Major reorganization; we now follow the standard python package structure. 2012-12-26 17:51:52 -05:00
setup.py Removed incorrect version numbers 2012-12-27 11:53:22 -05:00

README.txt

PyQtGraph - A pure-Python graphics library for PyQt/PySide
Copyright 2012 Luke Campagnola, University of North Carolina at Chapel Hill
http://www.pyqtgraph.org

Authors:
    Luke Campagnola   ('luke.campagnola@%s.com' % 'gmail')
    Megan Kratz
    Ingo Breßler

Requirements:
    PyQt 4.7+ or PySide
    python 2.6, 2.7, or 3.x
    numpy, scipy
    For 3D graphics: pyopengl
    Known to run on Windows, Linux, and Mac.

Support:
    Post at the mailing list / forum:
    https://groups.google.com/forum/?fromgroups#!forum/pyqtgraph

Installation Methods:
    - To use with a specific project, simply copy the pyqtgraph subdirectory 
      anywhere that is importable from your project 
    - To install system-wide from source distribution:
         $ python setup.py install
    - For instalation packages, see the website (pyqtgraph.org)    

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 BZR, 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.