Skip to Content
ExamplesNodes

Drag Handle

You can restrict dragging to a specific part of node, by specifying a class that will act as a dragHandle.

import React from 'react'; import { ReactFlow, useNodesState, useEdgesState, Background, } from '@xyflow/react'; import DragHandleNode from './DragHandleNode'; import '@xyflow/react/dist/style.css'; const nodeTypes = { dragHandleNode: DragHandleNode, }; const initialNodes = [ { id: '2', type: 'dragHandleNode', // Specify the custom class acting as a drag handle dragHandle: '.drag-handle__custom', position: { x: 200, y: 200 }, }, ]; const DragHandleFlow = () => { const [nodes, setNodes, onNodesChange] = useNodesState(initialNodes); const [edges, setEdges, onEdgesChange] = useEdgesState([]); return ( <ReactFlow style={{ backgroundColor: "#F7F9FB" }} nodes={nodes} edges={edges} onNodesChange={onNodesChange} onEdgesChange={onEdgesChange} nodeTypes={nodeTypes} fitView > <Background /> </ReactFlow> ); }; export default DragHandleFlow;
Last updated on