import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-legend-pie-sub-chart', templateUrl: './legend-pie-sub-chart.component.html', styleUrls: ['./legend-pie-sub-chart.component.scss'] }) export class LegendPieSubChartComponent implements OnInit { constructor() { } data; position: string; seriesName: string = "" ngOnInit() { this.initChart() } initChart() { this.seriesName = "网站访问来源占比"; this.position = 'bottom' this.data = [ { value: 335, name: '直接访问' }, { value: 310, name: '邮件营销' }, { value: 234, name: '联盟广告' }, { value: 135, name: '视频广告' }, { value: 1548, name: '搜索引擎' } ] } }