Watermark
Previous
Tooltip
Next
Custom Plugin
Loading...
The Watermark plugin supports using text and images as watermarks. It works by adding a background-image
property to the Graph container's div, allowing control of watermark position and style through CSS. For text watermarks, it converts text to images using a hidden canvas.
The Watermark plugin is mainly used in the following scenarios:
const graph = new Graph({plugins: [{type: 'watermark',text: 'G6 Graph', // watermark textopacity: 0.2, // opacityrotate: Math.PI / 12, // rotation angle},],});
createGraph({data: { nodes: [{ id: 'node-1' }] },node: { style: { fill: '#7e3feb' } },edge: { style: { stroke: '#8b9baf' } },layout: { type: 'force' },behaviors: ['drag-canvas'],plugins: [{ type: 'watermark', key: 'watermark', text: 'G6: Graph Visualization' }],},{ width: 600, height: 300 },(gui, graph) => {const options = {type: 'watermark',width: 200,height: 100,opacity: 0.2,rotate: Math.PI / 12,text: 'G6: Graph Visualization',};const optionFolder = gui.addFolder('Watermark Options');optionFolder.add(options, 'type').disable(true);optionFolder.add(options, 'width', 1, 1280, 1);optionFolder.add(options, 'height', 1, 800, 1);optionFolder.add(options, 'opacity', 0, 1, 0.1);optionFolder.add(options, 'rotate', 0, 2 * Math.PI, Math.PI / 12);optionFolder.add(options, 'text');optionFolder.onChange(({ property, value }) => {graph.updatePlugin({key: 'watermark',[property]: value,});graph.render();});},);
Property | Description | Type | Default | Required |
---|---|---|---|---|
type | Plugin type | string | watermark | ✓ |
width | Width of single watermark | number | 200 | |
height | Height of single watermark | number | 100 | |
opacity | Opacity of watermark | number | 0.2 | |
rotate | Rotation angle of watermark | number | Math.PI / 12 | |
imageURL | Image URL for watermark, takes precedence over text | string | - | |
text | Watermark text content | string | - | |
textFill | Color of text watermark | string | #000 | |
textFontSize | Font size of text watermark | number | 16 | |
textFontFamily | Font family of text watermark | string | - | |
textFontWeight | Font weight of text watermark | string | - | |
textFontVariant | Font variant of text watermark | string | - | |
textAlign | Text alignment of watermark | center | end | left | right | start | center | |
textBaseline | Text baseline of watermark | alphabetic | bottom | hanging | ideographic | middle | top | middle | |
backgroundRepeat | Repeat pattern of watermark | string | repeat | |
backgroundAttachment | Background attachment behavior | string | - | |
backgroundBlendMode | Background blend mode | string | - | |
backgroundClip | Background clip | string | - | |
backgroundColor | Background color | string | - | |
backgroundImage | Background image | string | - | |
backgroundOrigin | Background origin | string | - | |
backgroundPosition | Background position | string | - | |
backgroundPositionX | Horizontal background position | string | - | |
backgroundPositionY | Vertical background position | string | - | |
backgroundSize | Background size | string | - |
Simplest text watermark configuration:
const graph = new Graph({plugins: [{type: 'watermark',text: 'G6 Graph',},],});
Using an image as watermark:
const graph = new Graph({plugins: [{type: 'watermark',imageURL: 'https://example.com/logo.png',width: 100,height: 50,opacity: 0.1,},],});
Customize watermark style and position:
const graph = new Graph({plugins: [{type: 'watermark',text: 'G6 Graph',textFontSize: 20, // Set font sizetextFontFamily: 'Arial', // Set font familytextFontWeight: 'bold', // Set font weighttextFill: '#1890ff', // Set text colorrotate: Math.PI / 6, // Set rotation angleopacity: 0.15, // Set opacitywidth: 180, // Set watermark widthheight: 100, // Set watermark heightbackgroundRepeat: 'space', // Set repeat patternbackgroundPosition: 'center', // Set positiontextAlign: 'center', // Set text alignmenttextBaseline: 'middle', // Set baseline alignment},],});