├── .gitignore ├── .python-version ├── .vscode ├── launch.json └── settings.json ├── LICENSE.txt ├── README.md ├── manual_checks └── check_colorbar.py ├── poetry.lock ├── pyproject.toml ├── pyqtgraph_extended ├── __init__.py └── opengl │ └── __init__.py ├── pyqtgraph_extensions ├── AlignedPlot.py ├── AxisItem.py ├── GraphicsLayout.py ├── __init__.py ├── autorange_toggle_off.png ├── autorange_toggle_off.svg ├── autorange_toggle_on.png ├── autorange_toggle_on.svg ├── ellipsis.png ├── ellipsis.svg ├── examples │ ├── demo_axis_alignment.py │ ├── demo_color_bar.py │ ├── demo_misc.py │ └── demo_right_top_axes.py ├── functions.py ├── hook-pyqtgraph_extensions.py ├── misc.py ├── offcuts.py ├── opengl │ ├── __init__.py │ └── test │ │ └── test_pyqtgraph_extensions_opengl.py └── test │ ├── test_ImageItem.py │ ├── test_all.py │ ├── test_functions.py │ └── try_deleting.py ├── pyqtgraph_recipes ├── __init__.py ├── jet_white.txt ├── jet_white_clip.txt ├── parula.txt ├── parula_white.txt ├── pyqtgraph_recipes.py └── test │ └── test_recipes.py ├── pytest.ini ├── screenshots ├── axis_alignment.png ├── axis_buttons.png ├── axis_buttons_labelled.png ├── axis_buttons_labelled.svg └── live_colorbaritem.gif └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/.python-version -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/README.md -------------------------------------------------------------------------------- /manual_checks/check_colorbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/manual_checks/check_colorbar.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyqtgraph_extended/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extended/__init__.py -------------------------------------------------------------------------------- /pyqtgraph_extended/opengl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extended/opengl/__init__.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/AlignedPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/AlignedPlot.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/AxisItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/AxisItem.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/GraphicsLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/GraphicsLayout.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/__init__.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/autorange_toggle_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/autorange_toggle_off.png -------------------------------------------------------------------------------- /pyqtgraph_extensions/autorange_toggle_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/autorange_toggle_off.svg -------------------------------------------------------------------------------- /pyqtgraph_extensions/autorange_toggle_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/autorange_toggle_on.png -------------------------------------------------------------------------------- /pyqtgraph_extensions/autorange_toggle_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/autorange_toggle_on.svg -------------------------------------------------------------------------------- /pyqtgraph_extensions/ellipsis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/ellipsis.png -------------------------------------------------------------------------------- /pyqtgraph_extensions/ellipsis.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/ellipsis.svg -------------------------------------------------------------------------------- /pyqtgraph_extensions/examples/demo_axis_alignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/examples/demo_axis_alignment.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/examples/demo_color_bar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/examples/demo_color_bar.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/examples/demo_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/examples/demo_misc.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/examples/demo_right_top_axes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/examples/demo_right_top_axes.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/functions.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/hook-pyqtgraph_extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/hook-pyqtgraph_extensions.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/misc.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/offcuts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/offcuts.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/opengl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/opengl/__init__.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/opengl/test/test_pyqtgraph_extensions_opengl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/opengl/test/test_pyqtgraph_extensions_opengl.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/test/test_ImageItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/test/test_ImageItem.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/test/test_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/test/test_all.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/test/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/test/test_functions.py -------------------------------------------------------------------------------- /pyqtgraph_extensions/test/try_deleting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_extensions/test/try_deleting.py -------------------------------------------------------------------------------- /pyqtgraph_recipes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_recipes/__init__.py -------------------------------------------------------------------------------- /pyqtgraph_recipes/jet_white.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_recipes/jet_white.txt -------------------------------------------------------------------------------- /pyqtgraph_recipes/jet_white_clip.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_recipes/jet_white_clip.txt -------------------------------------------------------------------------------- /pyqtgraph_recipes/parula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_recipes/parula.txt -------------------------------------------------------------------------------- /pyqtgraph_recipes/parula_white.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_recipes/parula_white.txt -------------------------------------------------------------------------------- /pyqtgraph_recipes/pyqtgraph_recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_recipes/pyqtgraph_recipes.py -------------------------------------------------------------------------------- /pyqtgraph_recipes/test/test_recipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/pyqtgraph_recipes/test/test_recipes.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- 1 | [pytest] 2 | qt_api=pyqt6 -------------------------------------------------------------------------------- /screenshots/axis_alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/screenshots/axis_alignment.png -------------------------------------------------------------------------------- /screenshots/axis_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/screenshots/axis_buttons.png -------------------------------------------------------------------------------- /screenshots/axis_buttons_labelled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/screenshots/axis_buttons_labelled.png -------------------------------------------------------------------------------- /screenshots/axis_buttons_labelled.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/screenshots/axis_buttons_labelled.svg -------------------------------------------------------------------------------- /screenshots/live_colorbaritem.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/screenshots/live_colorbaritem.gif -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draustin/pyqtgraph_extensions/HEAD/tox.ini --------------------------------------------------------------------------------