Highcharts如何向栏添加额外的值

时间:2017-09-16 14:24:18

标签: highcharts

目标是在图片中制作一个类似于条形图的条形图,以百分比形式显示价值,但也在MillionTonnes中: enter image description here

条形图表示百分比值。百万吨的价值只是额外的信息。两个值都可以在条形的末尾,百分比应首先出现,然后出现百万吨值。就像是: 49%(4960万吨)。如何让这两个值出现在栏的末尾?这是我的代码。 TIA

Highcharts.chart('grafica1', {
  chart: {
    type: 'column',
    inverted: true,
    plotBackgroundColor: null,
    plotBorderWidth: 0,
    plotShadow: false
  },
  title: {
    text: ' '
  },
  xAxis: {
    type: 'category',
    labels: {
      useHTML: true
    }
  },
  yAxis: {
    min: 0,
    max: 100,
    title: {
      text: null,
    },
    labels: {
      enabled: false,
    }
  },
  legend: {
    enabled: false
  },
  tooltip: {
    enabled: false
  },
  plotOptions: {
    series: {
      borderWidth: 0,
      dataLabels: {
        enabled: true,
        format: '({point.y:.1f} Million tones)%'
      }
    }
  },
  responsive: {
    rules: [{
      condition: {
        maxWidth: 500
      },
      chartOptions: {
        chart: {
          inverted: false
        },
        legend: {
          align: 'center',
          verticalAlign: 'bottom',
          layout: 'horizontal'
        }
      }
    }]
  },
  series: [{
    name: 'Production',
    colorByPoint: true,
    data: [{
      name: 'PACKAGING PAPERS<br>AND BOARDS',
      y: 49,
      color: '#005eb8',
    }, {
      name: 'CASE MATERIALS',
      y: 29.9,
      color: '#fff',
      borderWidth: 2,
      borderColor: '#005eb8'
    }, {
      name: 'OTHER PACKAGING & PAPER',
      y: 14.4,
      color: '#fff',
      borderWidth: 2,
      borderColor: '#005eb8'
    }, {
      name: 'WRAPPINGS',
      y: 4.7,
      color: '#fff',
      borderWidth: 2,
      borderColor: '#005eb8'
    }]
  }]
});
<script src="https://code.highcharts.com/highcharts.js"></script>

<div id="grafica1" class="chart1Slide2"></div>

1 个答案:

答案 0 :(得分:1)

使用stacking选项(Doc)时,可能会这样做。

这是一个有效的fiddle