File

src/module/stacked-bar-chart/stacked-bar-chart.component.ts

Implements

OnInit

Metadata

selector stacked-bar-chart
styleUrls stacked-bar-chart.component.scss
templateUrl ./stacked-bar-chart.component.html

Index

Methods
Inputs

Constructor

constructor()

Inputs

series

Type: BarChartSeries[]

yAxis

Methods

Public getBars
getBars()
Returns : [][]
ngOnInit
ngOnInit()
Returns : void
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]; // min, max

  @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, // same as zipping all the lists together
      R.map<BarPart[], BarPart[]>(
        R.pipe<BarPart[], BarPart[], BarPart[]>(
          R.sortBy((bp: BarPart) => bp.value || 0), // need the largest bars to be rendered first (with the lowest z index)
          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
Component
Html element with directive

results matching ""

    No results matching ""