带有旋转标签的柱形图

以下是带有旋转标签的柱形图的示例。

我们已经在 Highcharts 配置语法 章节中看到了用于绘制图表的配置。 现在让我们看看其他配置以及如何在 dataLabels 中添加旋转属性。

下面给出了带有旋转标签的柱形图的示例。


dataLabels

dataLabels 是一个包装对象,用于处理图表中的数据标签。

rotation 文本旋转(以度为单位)。 请注意,由于结构更复杂,旋转数据标签上的背景、边框和填充将会丢失。 默认为 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.component.html',
   styleUrls: ['./app.component.css']
})
export class AppComponent {
   highcharts = Highcharts;
   chartOptions = {   
      chart : {
         type: 'column'
      },
      title : {
         text: '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'
               }
            }
         }
      ]
   };
}

结果

验证结果。

带有旋转标签的柱形图

❮ angular_highcharts_column_charts.html