FrancyRenderer
is an object that holds the renderer name to be used by the client to display the graphics.
Francy JS allows users to switch between renderers in runtime, but if the renderer is specified in the GAP code, then the user won't be able to switch between renderers on the client side.
This implementation knows only about the official supported renderers: D3
, Vis
and Graphviz
. Please see Francy-JS for client implementation.
In this section we show all Francy FrancyRenderer Categories.
‣ IsFrancyRenderer ( arg ) | ( filter ) |
Returns: true
or false
Identifies FrancyRenderer
objects.
‣ IsFrancyRendererType ( arg ) | ( filter ) |
Returns: true
or false
Identifies FrancyRendererType
objects.
In this section we show all Francy FrancyRenderer Families.
In this section we show all Francy FrancyRenderer Representations.
‣ IsFrancyRendererRep ( arg ) | ( filter ) |
Returns: true
or false
Checks whether an Object
has a FrancyRenderer
internal representation.
‣ IsFrancyRendererTypeRep ( arg ) | ( filter ) |
Returns: true
or false
Checks whether an Object
has a FrancyRendererType
internal representation.
In this section we show all Francy FrancyRenderer Operations.
‣ FrancyRenderer ( IsFrancyRendererType ) | ( operation ) |
Returns: FrancyRenderer
Adds an info label with the format "label: value"
Examples:
Configure FrancyRendererType.VIS
as the renderer for a specific canvas:
gap> canvas := Canvas("Example Canvas / Shape with Messages"); gap> graph := Graph(GraphType.UNDIRECTED); gap> Add(canvas, graph); gap> vis := FrancyRenderer(FrancyRendererType.VIS); gap> Add(canvas, vis);
In this section we show all Global FrancyRendererType records for multi purpose.
In this section we show all FrancyRenderer Core Attributes
‣ Value ( arg ) | ( attribute ) |
Returns: IsString
with the renderer of the object
A value on a FrancyRenderer
is used to specify which renderer will be used to draw the graphics on the client.
‣ Value ( arg1 ) | ( operation ) |
‣ SetValue ( IsFrancyRenderer, IsString ) | ( operation ) |
Sets the actual renderer FrancyRenderer
.
generated by GAPDoc2HTML