Skip to content

Instantly share code, notes, and snippets.

@dhormale
dhormale / barchart.component.ts
Created October 12, 2018 02:23
barchart.component.ts using d3 JS in Angular 6
import { Component, OnInit, OnChanges, ViewChild, ElementRef, Input, ViewEncapsulation } from '@angular/core';
import * as d3 from 'd3';
@Component({
selector: 'app-barchart',
templateUrl: './barchart.component.html',
styleUrls: ['./barchart.component.css'],
encapsulation: ViewEncapsulation.None
})
export class BarchartComponent implements OnInit, OnChanges {