g6_canvas_resize {g6R} | R Documentation |
Resize the canvas of a g6 graph via proxy
Description
This function changes the size of the canvas of an existing g6 graph instance using a proxy object. This allows updating the graph dimensions without completely re-rendering it.
Usage
g6_canvas_resize(graph, width, height)
Arguments
graph |
A g6_proxy object created with |
width |
Numeric value specifying the new width of the canvas in pixels. |
height |
Numeric value specifying the new height of the canvas in pixels. |
Details
This function can only be used with a g6_proxy object within a Shiny application. It will not work with regular g6 objects outside of Shiny.
See https://g6.antv.antgroup.com/en/api/canvas#graphsetsizewidth-height for more details.
Value
The g6_proxy object (invisibly), allowing for method chaining.
See Also
[Package g6R version 0.1.0 Index]