区域图中的Angular Highcharts自定义图例标签

问题描述 投票:2回答:2

我要在区域图表类型中自定义标签符号,因为它可以在折线图类型中完成:

我有这个代码:

Highcharts.chart('container', {
        chart: {
        type: 'area'
    },

    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    plotOptions: {
        series: {
            marker: {
                enabled: false
            }
        }
    },

    series: [{
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]
});

我的传说是这样的:Result

我希望有这个:enter image description here

我无法编辑css样式,这必须是仅对此图表的独占定制。

我正在使用角度7.2,我已经导入了Highchart:

import {Chart} from 'angular-highcharts';
javascript angular charts highcharts angular2-highcharts
2个回答
2
投票

您可以通过手动设置图例符号的宽度和高度来实现。您需要将squareSymbol设置为false以允许具有不同的宽度和高度值:

legend: {
    squareSymbol: false,
    symbolHeight: 3,
    symbolWidth: 20
},

例如。

编辑

如果要将符号与文本对齐,请使用useHTML: true并设置lineHeight

  legend: {
    useHTML: true,
    itemStyle: {
      lineHeight: "23px"
    },
    squareSymbol: false,
    symbolHeight: 3,
    symbolWidth: 20
  },

See updated working jsfiddle here.


3
投票

使用line.prototype.drawLegendSymbol交换area.prototype.drawLegendSymbol方法。这在纯JS中已经足够了:

Highcharts.seriesTypes.area.prototype.drawLegendSymbol =
Highcharts.seriesTypes.line.prototype.drawLegendSymbol;

jsFiddle

在角度你可以这样包装Highcharts:

(function(factory) {
  if (typeof module === "object" && module.exports) {
    module.exports = factory;
  } else {
    factory(Highcharts);
  }
})(function(Highcharts) {
  Highcharts.seriesTypes.area.prototype.drawLegendSymbol =
    Highcharts.seriesTypes.line.prototype.drawLegendSymbol;
});

docs:https://github.com/highcharts/highcharts-angular#to-load-a-wrapper

© www.soinside.com 2019 - 2024. All rights reserved.