You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+56-1Lines changed: 56 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,61 @@ In order to use matplotlib plots with QtQuick, do the following:
9
9
1. In your QML files, instantiate an object with the QML type defined above. Its `objectName` property specifies the name of the object that can be found in the QML engine. It can be retrieved in python with `win.findChild(QtCore.QObject, "spectFigure")`, for example, where `"spectFigure"` is the `objectName` in this case.
10
10
1. One can then pass this object as needed. This is the FigureCanvasQtQuickAgg object. The figure can be found in its `figure` property.
11
11
12
-
The test in the ``tests`` directory gives a simple example of how to use this backend.
12
+
The test in the `tests` directory gives a simple example of how to use this backend.
13
+
14
+
For interactive plots, if you want to use the toolbar, to the `Bridge` class add slots like:
0 commit comments