File
Implements
Metadata
selector |
stacked-bar-chart |
styleUrls |
stacked-bar-chart.component.scss |
templateUrl |
./stacked-bar-chart.component.html |
Methods
Public getBars
|
getBars()
|
|
Returns : [][]
|
import { BarChartSeries } from './../../types';
import {Component, Input, OnInit} from '@angular/core';
import * as R from "ramda";
export type BarPart = {
colour: string,
value: number | undefined
}
@Component({
selector: 'stacked-bar-chart',
templateUrl: './stacked-bar-chart.component.html',
styleUrls: ['./stacked-bar-chart.component.scss']
})
export class StackedBarChartComponent implements OnInit {
@Input()
public yAxis: [number, number];
@Input()
public series: BarChartSeries[];
constructor() { }
public getBars(): BarPart[][] {
return R.pipe<BarChartSeries[], BarPart[][], BarPart[][], BarPart[][]>(
R.map((s: BarChartSeries) => s.data.map(d => ({colour: s.colour, value: d}))),
R.transpose,
R.map<BarPart[], BarPart[]>(
R.pipe<BarPart[], BarPart[], BarPart[]>(
R.sortBy((bp: BarPart) => bp.value || 0),
R.reverse
)
)
)(this.series);
}
ngOnInit() {
}
}
<div class="main">
<svg class="bar" *ngFor="let bar of getBars()" [attr.viewBox]="'0 ' + yAxis[0] + ' 100 ' + yAxis[1]" preserveAspectRatio="none">
<rect *ngFor="let barPart of bar" [attr.fill]="barPart.colour" x="0" y="0" width="100" [attr.height]="barPart.value"></rect>
</svg>
</div>
Legend
Html element with directive