import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-rose-pie-sub-chart', templateUrl: './rose-pie-sub-chart.component.html', styleUrls: ['./rose-pie-sub-chart.component.scss'] }) export class RosePieSubChartComponent implements OnInit { constructor() { } bcacChartData; roseType; // radius; ngOnInit() { this.initChart() } initChart() { this.roseType = 'radius' // this.radius = ['10%','60%'] this.bcacChartData = [ { value: 10, name: 'rose1' }, { value: 5, name: 'rose2' }, { value: 15, name: 'rose3' }, { value: 25, name: 'rose4' }, { value: 20, name: 'rose5' }, { value: 35, name: 'rose6' }, { value: 30, name: 'rose7' }, { value: 40, name: 'rose8' } ] } }