寻找类似于附件的Highcharts

时间:2017-08-11 16:53:11

标签: highcharts

我在highcharts中寻找像this这样的图表。任何人都可以帮助找到像this这样的图表。我真的需要,但我无法在高级图表中制作我自己的类似图表。

UPDATE:

我在互联网上得到了this

1 个答案:

答案 0 :(得分:1)

检查如何自定义legend

 legend: {
  align: 'right',
  verticalAlign: 'top',
  layout: 'vertical',
  x: 0, 
  y: 100, //distance from top
  padding: 3,
  itemMarginTop: 5,  
  itemMarginBottom: 5,
  useHTML: true, //now you can customize label with various kind of styling
  labelFormatter: function() {

    return '<div style="width:100px;"><span style="float:left; margin-left:10px">' + names[this.index - 1] + '</span><span style="float:right">' + values[this.index - 1] + '</span></div>';
  },
  symbolRadius: 0, //square symbols
},

updated fiddle