pyqtgraph/exporters/__init__.py
Luke Campagnola 81a32b0d1e Cleaned up and centralized export functionality
Moved GraphicsScene to its own directory, added exportDialog
Removed old export options from PlotItem / ViewBox (will re-enable once they are working again)
2012-03-11 11:59:45 -04:00

8 lines
142 B
Python

from SVGExporter import *
from ImageExporter import *
Exporters = [SVGExporter, ImageExporter]
def listExporters():
return Exporters[:]