Highcharts:可能有多个传说吗?

时间:2013-05-03 10:22:12

标签: highcharts legend

我是Highcharts的新手,到目前为止看起来很棒。但是,我需要将我的六个系列分组为图例中的三列。这可以通过限制图例宽度并使用legendIndex来实现。 Coffeescript中的Config片段:

  legend:
    # 3 items side-by-side with some margins
    itemWidth: Math.floor(config.width / 3.8)
  series: [
      # top left
      legendIndex: 1
      ...
    ,
      # bottom left
      legendIndex: 4
      ...
    ...  # 4 more series; other columns in indices 2,5 and 3,6
    ]

问题是,我还需要为每个组分别设置一个标题。所以像这样(ascii art):

Title A               Title B                 Title C
[ ] Item A1           [ ] Item B1             [ ] Item C1
[ ] Item A2           [ ] Item B2             [ ] Item C2

请注意,我也需要导出功能,因此我无法理解HTML定位。我怎样才能使我的传奇看起来像这样?

1 个答案:

答案 0 :(得分:0)

您可以使用Highcharts Renderer

将自定义文本放置到图表上

http://api.highcharts.com/highcharts#Renderer

你不能制作多个传说,但你可以用一个传奇做很多事情,使它看起来像多个传说。