import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-base-pie-sub-chart', templateUrl: './base-pie-sub-chart.component.html', styleUrls: ['./base-pie-sub-chart.component.scss'] }) export class BasePieSubChartComponent implements OnInit { constructor() { } chartData = []; seriesName = ""; radius = ""; ngOnInit() { this.initChart() } initChart() { this.seriesName = "区域声环境质量等级比例" this.radius = "70%" this.chartData = [ { value: 123, name: '一级' }, { value: 311, name: '二级' }, { value: 102, name: '三级' }, { value: 28, name: '四级' }, { value: 8, name: '五级' } ] } }