Skip to main content

<SurfaceComponent/>

Provides a pannable and zoomable canvas on which nodes, edges and groups can be drawn, with support for layouts and various plugins.

Usage​

This component is at the heart of VisuallyJs React, and is very customizable, but there are three main sections of props that you should be familiar with:

  • renderOptions This prop contains all of the settings that control the behaviour and appearance of the component itself - what layout to use, whether to zoom to fit a dataset when it has been loaded, whether or not to use a grid, plugins, etc...the list is long.

  • viewOptions This contains the mapping from node/edge/group types to their visual representation and behaviour. For nodes and groups this means mapping some JSX to use to render them; for edges this means specifying details of the connector to use to draw an edge, and how the edge should be anchored. You can also supply event mappings in your viewOptions to hook into user interaction with the various parts of the UI

  • modelOptions This is used less often than viewOptions and renderOptions, but this is how you can provide settings for the underlying model.

<SurfaceComponent 
className="..."
data={ ... }
url=" ... "
renderOptions={ ... }
viewOptions={ ... }
modelOptions={ ... }
/>

Props​

SurfaceComponentProps
Props for the SurfaceComponent.
NameTypeDescription
childProps?anyAny props to pass to children.
className?stringOptional class name to append to the root element's class list.
data?anyOptional initial data
dataType?stringID of the format that data or the data retrieved from url is expected to be in. Defaults to JSON_DATATYPE.
model?BrowserUIReactModelOptional instance to render. You mostly wont need to do this; the SurfaceComponent or PaperComponent will create
an instance.
modelOptions?ModelOptionsOptions for the underlying instance.
renderOptions?ReactSurfaceRenderOptionsRender options such as layout, drag options etc
selection?VisuallyJsSelection | SelectionGeneratorOptional selection (or selection generator) to render, rather than the entire model.
style?Record<string,string>Optional style object to apply to the container element.
surfaceId?stringOptional ID to assign to the surface that is created.
url?stringOptional URL to load initial data from.
viewOptions?ReactSurfaceViewOptionsMappings of vertex types to components/jsx and edge types.

Ref Handle​

If you bind this component to a ref, you get an object of type SurfaceComponentRef:

SurfaceComponentRef
Reference to a SurfaceComponent. Offers methods to get the underlying surface and VisuallyJs instance.
NameTypeDescription
getModel() => BrowserUIReactModelGets the underlying model instance, on which you can manage the model.
getSurface() => SurfaceGets the Surface canvas component.