具有反转值的面积图

以下是具有反转值的面积图示例。

我们已经在 Highcharts 配置语法 章节中看到了用于绘制图表的配置。 现在,让我们看一个带有倒轴的面积图的示例。 我们还将了解其他配置并在图表中添加 inverted 倒置属性 。


图表

将图表的反转 inverted 配置为 true。

配置要反转的轴。 当真正的 x 轴是垂直的并且 y 轴是水平的时。 如果图表中存在条形系列,则该系列将反转。 这里,默认值为 false。

var chart = {
   type: 'area',
   inverted: true
};

示例

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: 'area',
        inverted: true
      },
      title: {
        text: '一周平均水果消耗量'
      },
      subtitle : {
         style: {
            position: 'absolute',
            right: '0px',
            bottom: '10px'
         }
      },
      legend : {
         layout: 'vertical',
         align: 'left',
         verticalAlign: 'top',
         x: -150,
         y: 100,
         floating: true,
         borderWidth: 1,
         backgroundColor: (
            Highcharts.theme && Highcharts.theme.legendBackgroundColor) || 
               '#FFFFFF'
      },
      xAxis:{
         categories: ['Monday','Tuesday','Wednesday','Thursday',
            'Friday','Saturday','Sunday'] 
      },
      yAxis : {
         title: {
            text: 'Number of units'
         },
         labels: {
            formatter: function () {
               return this.value;
            }
         },
         min:0
      },
      tooltip : {
         formatter: function () {
            return '<b>' + this.series.name + '</b><br/>' +
               this.x + ': ' + this.y;
         }
      },
      plotOptions : {
         area: {
            fillOpacity: 0.5 
         }
      },
      credits:{
         enabled: false
      },
      series: [
         {
            name: 'John',
            data: [3, 4, 3, 5, 4, 10, 12]
         }, 
         {
            name: 'Jane',
            data: [1, 3, 4, 3, 3, 5, 4]
         }
      ]
   };
}

结果

验证结果。

带有反转值的面积图

❮ angular_highcharts_area_charts.html