Display legend items in two columns highcharts

前端 未结 3 799
半阙折子戏
半阙折子戏 2020-12-19 08:45

In highcharts is it possible to display the legend in two columns, stacked vertically?

I\'m trying to work out the best way of displaying the legend items, at the mo

3条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-19 09:09

    Have you tried to use itemWidth parameter?

    Please take look at

    http://jsfiddle.net/B9L2b/1266/

     legend: {
        width: 200,
        itemWidth: 100
    },
    

    http://api.highcharts.com/highcharts#legend.itemWidth

    EDIT:

    http://jsbin.com/oyicuc/31/

    width:600,
            itemWidth:300,
            itemStyle: {
              width:280
            }
    

    http://api.highcharts.com/highstock#legend.itemStyle

提交回复
热议问题