apply_graph_theme {psyverse} | R Documentation |
Apply multiple DiagrammeR global graph attributes
Description
Apply multiple DiagrammeR global graph attributes
Usage
apply_graph_theme(dctGraph, ...)
Arguments
dctGraph |
The DiagrammeR::DiagrammeR graph to apply the attributes to. |
... |
One or more character vectors of length three, where the first element is
the attribute, the second the value, and the third, the attribute type ( |
Value
The DiagrammeR::DiagrammeR graph.
Examples
exampleSpec <-
system.file("inst",
"extdata",
"example_dct_spec_1.dct",
package="psyverse");
parsedSpecs <- load_dct_specs(exampleSpec);
dctGraph <- parsedSpecs$output$basic_graph;
dctGraph <- apply_graph_theme(dctGraph,
c("color", "#0000AA", "node"),
c("fillcolor", "#00FFFF", "node"));
[Package psyverse version 0.2.6 Index]