开发学院

您的位置:首页>教程>正文

教程正文

Angular Highcharts:包含柱状图、折线图和饼状图的组合(Chart with Column, Line and Pie)

  下面给出了一个包含柱状图、折线图和饼状图的组合图示例。

配置

  将图表类型配置为基于散点图。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: 'Total fruit consumption',
            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_column.jpg