File: SVGExporter.py

package info (click to toggle)
orange3 3.40.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 15,928 kB
  • sloc: python: 162,745; ansic: 622; makefile: 322; sh: 93; cpp: 77
file content (16 lines) | stat: -rw-r--r-- 446 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
"""
A modified pyqtgraph/exporters/SVGExporter.py from
https://github.com/pyqtgraph/pyqtgraph/ (available under MIT License)

Fixes:
- SVGExporter: fix axes position and scale
  (https://github.com/pyqtgraph/pyqtgraph/pull/641)
- SVG export: handle Qt.NoPen on Qt5
  (https://github.com/pyqtgraph/pyqtgraph/pull/642)

Remove this file when pyqtgraph updates.
"""

from orangewidget.utils.SVGExporter import SVGExporter

__all__ = ["SVGExporter"]