#1224 Possibility to style text color of nodes and subgraphs as well as apply classes to subgraphs

This commit is contained in:
Knut Sveidqvist
2020-02-05 19:39:50 +01:00
parent 4d5ecc5518
commit 822df37f8c
4 changed files with 50 additions and 2 deletions

View File

@@ -575,4 +575,27 @@ it('24.2: Handle link click events (link, anchor, mailto, other protocol, script
{ flowchart: { htmlLabels: false } }
);
});
it('30: Possibility to style text color of nodes and subgraphs as well as apply classes to subgraphs', () => {
imgSnapshotTest(
`graph LR
subgraph id1 [title is set]
A-->B
end
subgraph id2 [title]
E
end
B-->C
subgraph id3
C-->D
end
class id3,id2,A redBg;
class id3,A whiteTxt;
classDef redBg fill:#622;
classDef whiteTxt color: white;
`,
{ flowchart: { htmlLabels: false } }
);
});
});