Angular-highcharts-combinations-column

提供:Dev Guides
移動先:案内検索

列、線、および円グラフ

以下は、列、線、および円のあるチャートの例です。

link:/angular_highcharts/angular_highcharts_configuration_syntax [Highcharts構成構文]の章で、チャートを描画するために使用される構成をすでに確認しました。

列、線、および円を含む組み合わせグラフの例を以下に示します。

構成

ここで、追加の構成/実行された手順を見てみましょう。

シリーズ

散布図ベースのチャートタイプを構成します。 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.componentl',
   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
            }
         },
      ]
   };
}

結果

結果を確認します。

列、線、および円グラフ