使用highcharts.js使用多个轴

时间:2016-06-10 19:26:33

标签: javascript jquery highcharts axis

我正在使用highcharts.js,我有一个散布情节示例,我发现,f here。通过这个例子,我可以将X轴分为两类,这对我的情况来说是理想的。但是,我想将每个'Vendor'变量的标签旋转90度,同时保持'date'变量水平。我无法弄明白,即使知道是否可能。我知道如何旋转两个变量但看起来不太好。甚至可以用highcharts.js实现这种效果吗?

 var cates = [{
                    name: "1/1/2014",
                    categories: ["Vendor 1", "Vendor 2", "Vendor 3"]
                }, {
                    name: "1/2/2014",
                    categories: ["Vendor 1", "Vendor 2", "Vendor 3"]
                }, {
                    name: "1/3/2014",
                    categories: ["Vendor 1", "Vendor 2", "Vendor 3"]
                }];

               console.log("here: ", cates);

$(function () {
    var chart = new Highcharts.Chart({
        chart: {
            renderTo: "container",
            type: "scatter",
            borderWidth: 5,
            borderColor: '#e8eaeb',
            borderRadius: 0,
            backgroundColor: '#f7f7f7'
        },
        title: {
             text: "title"
        },
        yAxis: [{ // Primary yAxis
            labels: {
                format: '${value}',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            },
            title: {
                text: 'Daily Tickets',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            }
        }, { // Secondary yAxis
            title: {
                text: 'Invoices',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            },
            labels: {
                format: '${value}',
                style: {
                    color: Highcharts.getOptions().colors[0]
                }
            },
            opposite: true
        }]
        ,
        series: [{
            name: 'Daily',
            type: 'scatter',
            yAxis: 1,
            data: [4, 14, 18, 5, 6, 5, 14, 15, 18],
            tooltip: {
                valueSuffix: ' mm'
            }
        }],
        xAxis: {
            categories: cates,
           /** UNCOMMENT BELOW **/
           // labels: {
           //   rotation:-90,
           //   style: {
           //       fontSize:'10px',
           //       fontWeight:'normal',
           //       color:'#333'
           //   },
           //}
        }
    });
});

更新:我想通了,标签对象看起来应该是这样的

labels: {
  groupedOptions: [{
    y: 90,
    rotation: 0
  }],
    rotation:-90,
    style: {
        fontSize:'10px',
        fontWeight:'normal',
        color:'#333'
    },
}

0 个答案:

没有答案