2016-04-28 05:33:51 +00:00
|
|
|
.. currentmodule:: pyqtgraph
|
|
|
|
|
|
|
|
.. _apiref_config:
|
|
|
|
|
|
|
|
Global Configuration Options
|
|
|
|
============================
|
|
|
|
|
|
|
|
PyQtGraph has several global configuration options that allow you to change its
|
|
|
|
default behavior. These can be accessed using the :func:`setConfigOptions` and
|
|
|
|
:func:`getConfigOption` functions:
|
|
|
|
|
|
|
|
================== =================== ================== ================================================================================
|
|
|
|
**Option** **Type** **Default**
|
|
|
|
leftButtonPan bool True If True, dragging the left mouse button over a ViewBox
|
|
|
|
causes the view to be panned. If False, then dragging
|
|
|
|
the left mouse button draws a rectangle that the
|
|
|
|
ViewBox will zoom to.
|
|
|
|
foreground See :func:`mkColor` 'd' Default foreground color for text, lines, axes, etc.
|
|
|
|
background See :func:`mkColor` 'k' Default background for :class:`GraphicsView`.
|
|
|
|
antialias bool False Enabling antialiasing causes lines to be drawn with
|
|
|
|
smooth edges at the cost of reduced performance.
|
2016-08-31 22:14:25 +00:00
|
|
|
imageAxisOrder str 'col-major' For 'row-major', image data is expected in the standard row-major
|
2016-06-16 15:54:52 +00:00
|
|
|
(row, col) order. For 'col-major', image data is expected in
|
|
|
|
reversed column-major (col, row) order.
|
|
|
|
The default is 'col-major' for backward compatibility, but this may
|
2016-04-28 05:33:51 +00:00
|
|
|
change in the future.
|
|
|
|
editorCommand str or None None Command used to invoke code editor from ConsoleWidget.
|
|
|
|
exitCleanup bool True Attempt to work around some exit crash bugs in PyQt and PySide.
|
|
|
|
useWeave bool False Use weave to speed up some operations, if it is available.
|
|
|
|
weaveDebug bool False Print full error message if weave compile fails.
|
|
|
|
useOpenGL bool False Enable OpenGL in GraphicsView. This can have unpredictable effects on stability
|
|
|
|
and performance.
|
2021-01-20 05:26:24 +00:00
|
|
|
useCupy bool False Use cupy to perform calculations on the GPU. Only currently applies to
|
|
|
|
ImageItem and its associated functions.
|
2016-04-28 05:33:51 +00:00
|
|
|
enableExperimental bool False Enable experimental features (the curious can search for this key in the code).
|
|
|
|
crashWarning bool False If True, print warnings about situations that may result in a crash.
|
|
|
|
================== =================== ================== ================================================================================
|
|
|
|
|
|
|
|
|
|
|
|
.. autofunction:: pyqtgraph.setConfigOptions
|
|
|
|
|
|
|
|
.. autofunction:: pyqtgraph.getConfigOption
|
|
|
|
|