Add legend to chart with D3 V4 Angular-cli
问题 I am using D3 charting library to create charts with Angular-cli. D3 version is 4.2.2. I create a multi-line chart and here is I am trying to add legend to the chart. Following code is my code look like. import {Directive, ElementRef, HostListener, Renderer} from '@angular/core'; import * as D3 from 'd3'; @Directive({ selector: 'bar-graph' }) export class BarGraphDirective { private htmlElement:HTMLElement; constructor(private elementRef:ElementRef, private renderer: Renderer) { this