高图表箱图数据标签

时间:2018-10-23 20:54:42

标签: highcharts label boxplot

Picture 嗨,我来过这张照片。我正在使用highcharts.com,并且已经绘制了一个箱形图,并且我想为每个单独的箱形图添加3条带有一些文本的附加行。后来我想渲染网格线,使其看起来像一张桌子,我很快就用油漆画出了我的想法,它的外观应该如何。有什么想法可以实现高图表吗?谢谢 Picture with gridlines

1 个答案:

答案 0 :(得分:0)

要获得所需的结果,可以使用grouped-categories模块:https://github.com/blacklabel/grouped_categories

xAxis: {
    categories: [{
        name: "Fruit",
        categories: ["Apple", "Banana", "Orange"]
    }, {
        name: "Vegetable",
        categories: ["Carrot", "Potato", "Tomato"]
    }, {
        name: "Fish",
        categories: ["Cod", "Salmon", "Tuna"]
    }]
}

实时演示:http://jsfiddle.net/BlackLabel/aest25yg/