I'm trying to understand this 'simple' example of NGX-Charts:
https://stackblitz.com/edit/ngx-graph-simple-example
Each of the nodes in the graph has a different color, and if you look at the component.ts file, the node objects don't have a color field.
But the HTML template for each node uses:
<svg:rect [attr.width]="node.width" [attr.height]="node.height" [attr.fill]="node.options.color" />
Where's node.options.color coming from?