项目作者: EshwarRachala

项目描述 :
Angular d3 charts
高级语言: JavaScript
项目地址: git://github.com/EshwarRachala/bi-ng2charts-core.git
创建时间: 2017-04-05T02:04:08Z
项目社区:https://github.com/EshwarRachala/bi-ng2charts-core

开源协议:Other

下载


ng2Charts

This Library provides two different types of d3 charts
either we can use Basic charts(ex: BarChart, LineChart etc.) by using Angular module(ChartsModule)
or
we can use Angular 2 service (ChartService) which exposes d34.7 module along
with Angular 2 predefined d3 functions

Import Library

Run

  1. npm install ng2charts

Once installed

  1. import {ChartsModule, ChartService } from 'ng2charts'

Utilizing Chart components

<bar-chart [settings]="settings" [data]="dataset"></bar-chart>

Utilizing ChartService

import Service

  1. import {ChartsModule, ChartService } from 'ng2charts'
  2. @Component({
  3. selector: 'bar-chart',
  4. templateUrl: './bar-chart.component.html',
  5. styleUrls: ['./bar-chart.component.css'],
  6. providers: [ChartService]
  7. })
  8. public chart: ChartService;
  9. constructor(chartService: ChartService) {
  10. this.chart = chartService;
  11. }
  12. const d3 = this.chart.d3;
  13. const line = d3.line()
  14. .x((d: any) => this.chart.xscale(d.text))
  15. .y((d: any) => this.chart.yscale(d.value));
  16. this.chart
  17. .SVG(this.target.nativeElement)
  18. .Scale(ScaleType.Time, Axis.x)
  19. .RangeRound(Axis.x)
  20. .Domain(Axis.x, d3.extent(data, (d: any) => d.text))
  21. .Axis(Axis.x)
  22. .Scale(ScaleType.Linear, Axis.y)
  23. .RangeRound(Axis.y)
  24. .Domain(Axis.y, d3.extent(data, (d: any) => d.value))
  25. .Axis(Axis.y)
  26. .Line(data, line);

for more details reference bar-chart component in src folder

to resolve d3, Install typings (add —g to install globally)

typings install --save dt~d3;