There was a previous question here, but I need clarification on the answer and don't have enough rep to comment. Paging user @Maya Sol.
I am trying to recreate her answer but I have not been successful and I am wondering where I am going wrong.
<ngx-charts-legend
[data]="sizeByTypeNames"
[title]="'Legend Title'"
[colors]="colors"
[activeEntries]="activeEntries"
(labelActivate)="legendLabelActivate($event)"
(labelDeactivate)="legendLabelDeactivate($event)">
</ngx-charts-legend>
this.colors = new ColorHelper(this.colorScheme, 'ordinal', this.sizeByTypeNames, this.colorScheme);
this.sizeByTypeNames: string[] = [an array of the names each legend label should have]
I don't get any errors and I can see the legend title, but there is no content within the legend.