UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular2 and beyond!

208 lines (182 loc) 5.44 kB
import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy } from '@angular/core'; import { calculateViewDimensions, ViewDimensions } from '../common/view-dimensions.helper'; import { ColorHelper } from '../common/color.helper'; import { BaseChartComponent } from '../common/base-chart.component'; import d3 from '../d3'; @Component({ selector: 'ngx-charts-bar-vertical', template: ` <ngx-charts-chart [view]="[width, height]" [showLegend]="legend" [legendOptions]="legendOptions" [activeEntries]="activeEntries" (legendLabelClick)="onClick($event)" (legendLabelActivate)="onActivate($event)" (legendLabelDeactivate)="onDeactivate($event)"> <svg:g [attr.transform]="transform" class="bar-chart chart"> <svg:g ngx-charts-x-axis *ngIf="xAxis" [xScale]="xScale" [dims]="dims" [showLabel]="showXAxisLabel" [labelText]="xAxisLabel" (dimensionsChanged)="updateXAxisHeight($event)"> </svg:g> <svg:g ngx-charts-y-axis *ngIf="yAxis" [yScale]="yScale" [dims]="dims" [showGridLines]="showGridLines" [showLabel]="showYAxisLabel" [labelText]="yAxisLabel" (dimensionsChanged)="updateYAxisWidth($event)"> </svg:g> <svg:g ngx-charts-series-vertical [xScale]="xScale" [yScale]="yScale" [colors]="colors" [series]="results" [dims]="dims" [gradient]="gradient" [activeEntries]="activeEntries" (activate)="onActivate($event)" (deactivate)="onDeactivate($event)" (select)="onClick($event)"> </svg:g> </svg:g> </ngx-charts-chart> `, changeDetection: ChangeDetectionStrategy.OnPush }) export class BarVerticalComponent extends BaseChartComponent { @Input() legend = false; @Input() xAxis; @Input() yAxis; @Input() showXAxisLabel; @Input() showYAxisLabel; @Input() xAxisLabel; @Input() yAxisLabel; @Input() gradient: boolean; @Input() showGridLines: boolean = true; @Input() activeEntries: any[] = []; @Input() schemeType: string; @Output() activate: EventEmitter<any> = new EventEmitter(); @Output() deactivate: EventEmitter<any> = new EventEmitter(); dims: ViewDimensions; xScale: any; yScale: any; xDomain: any; yDomain: any; transform: string; colors: ColorHelper; margin: any[] = [10, 20, 10, 20]; xAxisHeight: number = 0; yAxisWidth: number = 0; legendOptions: any; update(): void { super.update(); this.zone.run(() => { this.dims = calculateViewDimensions({ width: this.width, height: this.height, margins: this.margin, showXAxis: this.xAxis, showYAxis: this.yAxis, xAxisHeight: this.xAxisHeight, yAxisWidth: this.yAxisWidth, showXLabel: this.showXAxisLabel, showYLabel: this.showYAxisLabel, showLegend: this.legend, legendType: this.schemeType }); this.xScale = this.getXScale(); this.yScale = this.getYScale(); this.setColors(); this.legendOptions = this.getLegendOptions(); this.transform = `translate(${ this.dims.xOffset } , ${ this.margin[0] })`; }); } getXScale() { const spacing = 0.2; this.xDomain = this.getXDomain(); return d3.scaleBand() .rangeRound([0, this.dims.width]) .paddingInner(spacing) .domain(this.xDomain); } getYScale() { this.yDomain = this.getYDomain(); return d3.scaleLinear() .range([this.dims.height, 0]) .domain(this.yDomain); } getXDomain(): any[] { return this.results.map(d => d.name); } getYDomain() { let values = this.results.map(d => d.value); let min = Math.min(0, ...values); let max = Math.max(...values); return [min, max]; } onClick(data) { this.select.emit(data); } setColors(): void { let domain; if (this.schemeType === 'ordinal') { domain = this.xDomain; } else { domain = this.yDomain; } this.colors = new ColorHelper(this.scheme, this.schemeType, domain, this.customColors); } getLegendOptions() { let opts = { scaleType: this.schemeType, colors: undefined, domain: [] }; if (opts.scaleType === 'ordinal') { opts.domain = this.xDomain; opts.colors = this.colors; } else { opts.domain = this.yDomain; opts.colors = this.colors.scale; } return opts; } updateYAxisWidth({ width }): void { this.yAxisWidth = width; this.update(); } updateXAxisHeight({ height }): void { this.xAxisHeight = height; this.update(); } onActivate(item) { const idx = this.activeEntries.findIndex(d => { return d.name === item.name && d.value === item.value && d.series === item.series; }); if (idx > -1) { return; } this.activeEntries = [ item, ...this.activeEntries ]; this.activate.emit({ value: item, entries: this.activeEntries }); } onDeactivate(item) { const idx = this.activeEntries.findIndex(d => { return d.name === item.name && d.value === item.value && d.series === item.series; }); this.activeEntries.splice(idx, 1); this.activeEntries = [...this.activeEntries]; this.deactivate.emit({ value: event, entries: this.activeEntries }); } }