高图中的分段标记

时间:2018-07-23 14:33:40

标签: javascript jquery charts highcharts

我正在使用this Highchart制作带有多个y轴的图形,但在为x轴创建多个标签时遇到了麻烦。 目前我达到了     

Highcharts.chart('container', {
    chart: {
        zoomType: 'xy'
    },
    title: {
        text: 'Average Week Comparison'
    },
    subtitle: {
        text: 'Values: Wastage and OEE'
    },
    xAxis: [{
        categories: days.reverse(),
        crosshair: true
    }],
    yAxis: [{ // Primary yAxis
        labels: {
            format: '{value}%',
            style: {
                color: Highcharts.getOptions().colors[1]
            }
        },
        title: {
            text: 'OEE',
            style: {
                color: Highcharts.getOptions().colors[1]
            }
        }
    }, { // Secondary yAxis
        title: {
            text: 'Waste',
            style: {
                color: Highcharts.getOptions().colors[0]
            }
        },
        labels: {
            format: '{value} %',
            style: {
                color: Highcharts.getOptions().colors[0]
            }
        },
        opposite: true
    }],
    tooltip: {
        shared: true
    },
    legend: {
        layout: 'vertical',
        align: 'left',
        x: 120,
        verticalAlign: 'top',
        y: 100,
        floating: true,
        backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColor) || '#FFFFFF'
    },
    series: [{
        name: 'OEE',
        type: 'column',
        yAxis: 1,
        data: oee.reverse(),
        tooltip: {
            valueSuffix: ' %'
        }

    }, {
        name: 'Waste',
        type: 'spline',
        data: [7.0, 6.9, 9.5, 14.5, 18.2, 21.5],
        tooltip: {
            valueSuffix: ' %'
        }
    }]
});

enter image description here

当前输出是我动态操纵x和y轴的地方。

现在,我想在3个值块中添加有关x轴值的部分 以下是相关图表(非实际) enter image description here

我不擅长JS,有人可以帮我弄清楚是否可以在上面的图像中打印x轴。 您的帮助将极大地推动我解决这个问题。 另外还有其他图书馆可以做到吗?您可以提及其链接。

1 个答案:

答案 0 :(得分:1)

您可以使用“ grouped-categories.js”插件。

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

实时演示:https://jsfiddle.net/BlackLabel/TFhd7/

文档:http://blacklabel.github.io/grouped_categories/