show default zoom behaviour in interaction example

This commit is contained in:
Christopher Möller
2020-11-02 12:51:48 +01:00
parent d64cdcec66
commit 0cb6662d5c
+2 -2
View File
@@ -25,8 +25,8 @@ const InteractionFlow = () => {
const [isSelectable, setIsSelectable] = useState(false);
const [isDraggable, setIsDraggable] = useState(false);
const [isConnectable, setIsConnectable] = useState(false);
const [zoomOnScroll, setZoomOnScroll] = useState(false);
const [panOnScroll, setPanOnScroll] = useState(true);
const [zoomOnScroll, setZoomOnScroll] = useState(true);
const [panOnScroll, setPanOnScroll] = useState(false);
const [zoomOnDoubleClick, setZoomOnDoubleClick] = useState(false);
const [paneMoveable, setPaneMoveable] = useState(true);
const [captureZoomClick, setCaptureZoomClick] = useState(false);