柱形图、折线图和饼图
以下是包含柱形图、折线图和饼图的图表示例。
我们已经在Highcharts 配置语法章节中看到了用于绘制图表的配置。
下面给出了包含柱形图、折线图和饼图的组合图表的示例。
配置
现在让我们看看采取的其他配置/步骤。
series 系列
将图表类型配置为基于散点图。 series.type 决定图表的系列类型。 这里,默认值为"line"。
series : [{ type: 'column', name: 'Jane', data: [3, 2, 1, 3, 4] }]
示例
app.component.ts
import { Component } from '@angular/core'; import * as Highcharts from 'highcharts'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'] }) export class AppComponent { highcharts = Highcharts; chartOptions = { title : { text: 'Combination chart' }, xAxis : { categories: ['Apples', 'Oranges', 'Pears', 'Bananas', 'Plums'] }, labels : { items: [{ html: '水果消费总量', style: { left: '50px', top: '18px', color: (Highcharts.theme && Highcharts.theme.textColor) || 'black' } }] }, series : [ { type: 'column', name: 'Jane', data: [3, 2, 1, 3, 4] }, { type: 'column', name: 'John', data: [2, 3, 5, 7, 6] }, { type: 'column', name: 'Joe', data: [4, 3, 3, 9, 0] }, { type: 'spline', name: 'Average', data: [3, 2.67, 3, 6.33, 3.33] }, { type: 'pie', name: 'Total consumption', data: [ { name: 'Jane', y: 13, color: Highcharts.getOptions().colors[0] // Jane's color }, { name: 'John', y: 23, color: Highcharts.getOptions().colors[1] // John's color }, { name: 'Joe', y: 19, color: Highcharts.getOptions().colors[2] // Joe's color } ], center: [100, 80], size: 100, showInLegend: false, dataLabels: { enabled: false } }, ] }; }
结果
验证结果。
❮ angular_highcharts_combinations.html