Angular Highcharts - 3D 饼图
以下是 3D 饼图的示例。
我们已经在Highcharts 配置语法章节中看到了用于绘制图表的配置。
下面给出了 3D 饼图的示例。
配置
现在让我们看看采取的其他配置/步骤。
option3D
将饼图类型配置为基于 3D。 Options3D 设置启用的 3D 选项。
chart: { options3d: { enabled: true, alpha: 15, beta: 15, depth: 50, viewDistance: 25 } }
示例
app.component.ts
import { Component } from '@angular/core'; import * as Highcharts from 'highcharts'; import highcharts3D from 'highcharts/highcharts-3d.src'; highcharts3D(Highcharts); @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { highcharts = Highcharts; chartOptions = { chart : { type:'pie', options3d: { enabled: true, alpha: 45, beta: 0 } }, title : { text: '2014 年特定网站的浏览器市场份额' }, tooltip : { pointFormat: '{series.name}: <b>{point.percentage:.1f}%</b>' }, plotOptions : { pie: { allowPointSelect: true, cursor: 'pointer', depth: 35, dataLabels: { enabled: true, format: '<b>{point.name}%</b>: {point.percentage:.1f} %', style: { color: (Highcharts.theme && Highcharts.theme.contrastTextColor)|| 'black' } } } }, series : [{ type: 'pie', name: 'Browser share', data: [ ['Firefox', 45.0], ['IE', 26.8], { name: 'Chrome', y: 12.8, sliced: true, selected: true }, ['Safari', 8.5], ['Opera', 6.2], ['Others', 0.7] ] }] }; }
结果
验证结果。