Angular Highcharts - 基本条形图
以下是条形图的示例。
我们已经在 Highcharts 配置语法 章节中看到了用于绘制图表的配置。 现在,让我们看一个基本条形图的示例。 我们还将了解其他配置。 我们更改了图表中的 type 类型属性。
图表
将图表类型配置为基于条形"bar"。 chart.type 决定图表的系列类型。 这里,默认值为"line"。
var chart = { type: 'bar' };
示例
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 = { chart: { type: 'bar' }, title: { text: '按地区划分的历史世界人口' }, subtitle : { text: 'Source: Wikipedia.org' }, legend : { layout: 'vertical', align: 'left', verticalAlign: 'top', x: 250, y: 100, floating: true, borderWidth: 1, backgroundColor: ( (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'), shadow: true }, xAxis:{ categories: ['Africa', 'America', 'Asia', 'Europe', 'Oceania'], title: { text: null } }, yAxis : { min: 0, title: { text: 'Population (millions)', align: 'high' }, labels: { overflow: 'justify' } }, tooltip : { valueSuffix: ' millions' }, plotOptions : { bar: { dataLabels: { enabled: true } } }, credits:{ enabled: false }, series: [ { name: 'Year 1800', data: [107, 31, 635, 203, 2] }, { name: 'Year 1900', data: [133, 156, 947, 408, 6] }, { name: 'Year 2008', data: [973, 914, 4054, 732, 34] } ] }; }
结果
验证结果。
❮ angular_highcharts_bar_charts.html