Angular-highcharts-column-rotated

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

回転したラベルのある列

以下は、ラベルが回転した縦棒グラフの例です。

link:/angular_highcharts/angular_highcharts_configuration_syntax [Highcharts構成構文]の章で、チャートを描画するために使用される構成をすでに確認しました。 ここで、追加の構成と、dataLabelsに回転属性を追加した方法を見てみましょう。

回転したラベルを持つ縦棒グラフの例を以下に示します。

dataLabels

dataLabelsは、チャート内のデータラベルを処理するラッパーオブジェクトです。

度単位のテキスト回転。 より複雑な構造のため、回転したデータラベルでは背景、境界線、およびパディングが失われることに注意してください。 デフォルトは0です。

dataLabels = {
   enabled: true,
   rotation: -90,
   color: '#FFFFFF',
   align: 'right',
   format: '{point.y:.1f}',//one decimal
   y: 10,//10 pixels down from the top
   style: {
      fontSize: '13px',
      fontFamily: 'Verdana, sans-serif'
   }
}

*_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 = {
      chart : {
         type: 'column'
      },
      title : {
         text: 'World\'s largest cities per 2014'
      },
      subtitle: {
         text: 'Source: <a href = "http://en.wikipedia.org/wiki/List_of_cities_proper_by_population">Wikipedia</a>'
      },
      xAxis : {
         type: 'category',
         labels: {
            rotation: -45,
            style: {
               fontSize: '13px',
               fontFamily: 'Verdana, sans-serif'
            }
         }
      },
      yAxis : {
         min: 0,
         title: {
            text: 'Population (millions)'
         }
      },
      tooltip : {
         pointFormat: 'Population in 2008: <b>{point.y:.1f} millions</b>'
      },
      credits : {
         enabled: false
      },
      series : [
         {
            name: 'Population',
            data: [
               ['Shanghai', 23.7],
               ['Lagos', 16.1],
               ['Instanbul', 14.2],
               ['Karachi', 14.0],
               ['Mumbai', 12.5],
               ['Moscow', 12.1],
               ['Sao Paulo', 11.8],
               ['Beijing', 11.7],
               ['Guangzhou', 11.1],
               ['Delhi', 11.1],
               ['Shenzhen', 10.5],
               ['Seoul', 10.4],
               ['Jakarta', 10.0],
               ['Kinshasa', 9.3],
               ['Tianjin', 9.3],
               ['Tokyo', 9.0],
               ['Cairo', 8.9],
               ['Dhaka', 8.9],
               ['Mexico City', 8.9],
               ['Lima', 8.9]
            ],
            dataLabels: {
               enabled: true,
               rotation: -90,
               color: '#FFFFFF',
               align: 'right',
               format: '{point.y:.1f}',//one decimal
               y: 10,//10 pixels down from the top
               style: {
                  fontSize: '13px',
                  fontFamily: 'Verdana, sans-serif'
               }
            }
         }
      ]
   };
}

結果

結果を確認します。

回転ラベル付きの縦棒グラフ