UNPKG

@swimlane/ngx-charts

Version:

Declarative Charting Framework for Angular2 and beyond!

300 lines (262 loc) 7.53 kB
import { Component, Input, Output, EventEmitter, trigger, style, transition, animate, 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-2d', template: ` <ngx-charts-chart [view]="[width, height]" [showLegend]="legend" [legendOptions]="legendOptions" [activeEntries]="activeEntries" (legendLabelActivate)="onActivate($event)" (legendLabelDeactivate)="onDeactivate($event)" (legendLabelClick)="onClick($event)"> <svg:g [attr.transform]="transform" class="bar-chart chart"> <svg:g ngx-charts-grid-panel-series [xScale]="groupScale" [yScale]="valueScale" [data]="results" [dims]="dims" orient="vertical"> </svg:g> <svg:g ngx-charts-x-axis *ngIf="xAxis" [xScale]="groupScale" [dims]="dims" [showLabel]="showXAxisLabel" [labelText]="xAxisLabel" (dimensionsChanged)="updateXAxisHeight($event)"> </svg:g> <svg:g ngx-charts-y-axis *ngIf="yAxis" [yScale]="valueScale" [dims]="dims" [showGridLines]="showGridLines" [showLabel]="showYAxisLabel" [labelText]="yAxisLabel" (dimensionsChanged)="updateYAxisWidth($event)"> </svg:g> <svg:g ngx-charts-series-vertical *ngFor="let group of results; trackBy:trackBy" [@animationState]="'active'" [attr.transform]="groupTransform(group)" [activeEntries]="activeEntries" [xScale]="innerScale" [yScale]="valueScale" [colors]="colors" [series]="group.series" [dims]="dims" [gradient]="gradient" (select)="onClick($event, group)" (activate)="onActivate($event, group)" (deactivate)="onDeactivate($event, group)" /> </svg:g> </ngx-charts-chart> `, changeDetection: ChangeDetectionStrategy.OnPush, animations: [ trigger('animationState', [ transition('* => void', [ style({ opacity: 1, transform: '*', }), animate(500, style({opacity: 0, transform: 'scale(0)'})) ]) ]) ] }) export class BarVertical2DComponent extends BaseChartComponent { @Input() legend = false; @Input() xAxis; @Input() yAxis; @Input() showXAxisLabel; @Input() showYAxisLabel; @Input() xAxisLabel; @Input() yAxisLabel; @Input() scaleType = 'ordinal'; @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; groupDomain: any[]; innerDomain: any[]; valuesDomain: any[]; groupScale: any; innerScale: any; valueScale: any; transform: string; colors: ColorHelper; margin = [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.formatDates(); this.groupDomain = this.getGroupDomain(); this.innerDomain = this.getInnerDomain(); this.valuesDomain = this.getValueDomain(); this.groupScale = this.getGroupScale(); this.innerScale = this.getInnerScale(); this.valueScale = this.getValueScale(); this.setColors(); this.legendOptions = this.getLegendOptions(); this.transform = `translate(${ this.dims.xOffset } , ${ this.margin[0] })`; }); } getGroupScale() { let spacing = 0.2; return d3.scaleBand() .rangeRound([0, this.dims.width]) .paddingInner(spacing) .paddingOuter(spacing / 2) .domain(this.groupDomain); } getInnerScale() { let spacing = 0.2; return d3.scaleBand() .rangeRound([0, this.groupScale.bandwidth()]) .paddingInner(spacing) .domain(this.innerDomain); } getValueScale() { return d3.scaleLinear() .range([this.dims.height, 0]) .domain(this.valuesDomain); } getGroupDomain() { let domain = []; for (let group of this.results) { if (!domain.includes(group.name)) { domain.push(group.name); } } return domain; } getInnerDomain() { let domain = []; for (let group of this.results) { for (let d of group.series) { if (!domain.includes(d.name)) { domain.push(d.name); } } } return domain; } getValueDomain() { let domain = []; for (let group of this.results) { for (let d of group.series) { if (!domain.includes(d.value)) { domain.push(d.value); } } } let min = Math.min(0, ...domain); let max = Math.max(...domain); return [min, max]; } groupTransform(group) { return `translate(${this.groupScale(group.name)}, 0)`; } onClick(data, group) { if (group) { data.series = group.name; } this.select.emit(data); } trackBy(index, item) { return item.name; } setColors(): void { let domain; if (this.schemeType === 'ordinal') { domain = this.innerDomain; } else { domain = this.valuesDomain; } 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.innerDomain; opts.colors = this.colors; } else { opts.domain = this.valuesDomain; opts.colors = this.colors.scale; } return opts; } updateYAxisWidth({width}) { this.yAxisWidth = width; this.update(); } updateXAxisHeight({height}) { this.xAxisHeight = height; this.update(); } onActivate(event, group) { let item = Object.assign({}, event); if (group) { item.series = group.name; } 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(event, group) { let item = Object.assign({}, event); if (group) { item.series = group.name; } 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 }); } }