Foblex Flow
Introduction
Getting Started
Containers
Flow Canvas
Node
Node Drag Handle
Connectors
Output Input Outlet
Connection
Connection Create Connection Connection Marker
Extends
Drag and Drop Zoom Background Line Alignment Minimap
Layouts & Behaviors
Dagre Tree ELKJS Tree
Pro Examples
Visual Programming Flow DB Management Flow Call Center Flow Scheme Editor
Foblex Flow
v12.6.4

Zoom

Selector: [fZoom]

The FZoomDirective directive is used to control the zoom and pan of the canvas. It is used in conjunction with the f-canvas component to provide zoom and pan functionality. Zooming can be done by using the mouse wheel or by double clicking on the canvas. The zoom level can be reset to the default

Inputs

  • fZoom: boolean; Enables or disables the zoom and pan functionality.

  • fZoomMinimum: number; The minimum zoom level allowed. Default is 0.1.

  • fZoomMaximum: number; The maximum zoom level allowed. Default is 4.

  • fZoomStep: number; The zoom step value. Default is 0.1.

  • fZoomDblClickStep: boolean; The zoom step value when double clicking. Default is 0.5.

Outputs

  • fCanvasChange: EventEmitter<FCanvasChangeEvent>; Emits an event when there are changes in the canvas state, like position or scale updates.

Methods

  • getScale(): number; Returns the current scale of the canvas.

  • zoomIn(point?: IPoint): void; Zooms in the canvas. If a point is provided, the zoom will be centered on that point.

  • zoomOut(point?: IPoint): void; Zooms out the canvas. If a point is provided, the zoom will be centered on that point.

  • reset(): void; Resets the zoom level to 1.

Styles

  • .f-component A general class applied to all F components for shared styling.

  • .f-zoom Specific class for styling the FZoomDirective component.

Usage

Basic Usage

To enable zoom and pan functionality, set fZoom directive to f-canvas component.

<f-flow>
  <f-canvas |:|fZoom|:|>
    <div fNode></div>
  </f-canvas>
</f-flow>

Tracking Zoom Changes

To track zoom changes, use the fCanvasChange output.

<f-flow>
  <f-canvas |:|fZoom|:| |:|(fCanvasChange)|:|="canvasChange($event)">
    <div fNode></div>
  </f-canvas>
</f-flow>

Programmatically Controlling Zoom

You can also control the zoom level programmatically by using the methods provided by the directive.

<f-flow>
  <f-canvas fZoom>
    /// content
  </f-canvas>
</f-flow>

Example

The following example shows how to enable zoom and pan functionality in the canvas. Use the mouse wheel to zoom in and out, and double click to zoom in.

Node 1
Node 2

[component.html] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/zoom-example/zoom-example.component.html [component.ts] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/zoom-example/zoom-example.component.ts [component.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/zoom-example/zoom-example.component.scss [common.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/_flow-common.scss