簡體   English   中英

將兩個系列合並為一個圖表(未堆疊)

[英]Combine 2 series in one Chart (not stacked)

我正在嘗試將2個單獨的系列合並到一張圖表中,並且正在使用Highcharts。 需求如所附圖片所示,我嘗試了如http://jsfiddle.net/gh/get/jquery/1.7.2/highslide-software/highcharts.com/tree/master/samples/highcharts/中所示的選項plotoptions / column-grouping-false /

$(function () {

// First, let's make the colors transparent
Highcharts.getOptions().colors = Highcharts.map(Highcharts.getOptions().colors, function (color) {
    return Highcharts.Color(color)
        .setOpacity(0.5)
        .get('rgba');
});

$('#container').highcharts({
    chart: {
        type: 'column'
    },
    title: {
        text: 'Monthly Average Rainfall'
    },
    subtitle: {
        text: 'Source: WorldClimate.com'
    },
    xAxis: {
        categories: [
            'Jan',
            'Feb',
            'Mar',
            'Apr',
            'May',
            'Jun',
            'Jul',
            'Aug',
            'Sep',
            'Oct',
            'Nov',
            'Dec'
        ]
    },
    yAxis: {
        min: 0,
        title: {
            text: 'Rainfall (mm)'
        }
    },
    legend: {
        layout: 'vertical',
        backgroundColor: '#FFFFFF',
        align: 'left',
        verticalAlign: 'top',
        x: 100,
        y: 70,
        floating: true,
        shadow: true
    },
    tooltip: {
        shared: true,
        valueSuffix: ' mm'
    },
    plotOptions: {
        column: {
            grouping: false,
            shadow: false
        }
    },
    series: [{
        name: 'Tokyo',
        data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],
        pointPadding: 0

    }, {
        name: 'New York',
        data: [83.6, 78.8, 98.5, 93.4, 106.0, 84.5, 105.0, 104.3, 91.2, 83.5, 106.6, 92.3],
        pointPadding: 0.1

    }, {
        name: 'London',
        data: [48.9, 38.8, 39.3, 41.4, 47.0, 48.3, 59.0, 59.6, 52.4, 65.2, 59.3, 51.2],
        pointPadding: 0.2

    }, {
        name: 'Berlin',
        data: [42.4, 33.2, 34.5, 39.7, 52.6, 75.5, 57.4, 60.4, 47.6, 39.1, 46.8, 51.1],
        pointPadding: 0.3

    }]
});
});

我也嘗試了其他選項,但無法解決。我的問題是:我們可以完全在highchart中獲得此功能嗎?

謝謝。 在此處輸入圖片說明

正如igoel所說,玩分組和pointPlacement應該足夠了。

不幸的是,Legend不支持系列分組,因此您必須使用labelFormatter對其進行一些格式化。

legend: {
    layout: 'horizontal',
    backgroundColor: '#FFFFFF',
    floating: true,
    align: 'left',
    verticalAlign: 'top',
    x: 90,
    y: 45,
    title: { text: 'Total Pieces' },
    labelFormatter: function () {                
        return this._i < 3 ? this.name + '  per hour (thousands)' : this.name + ' per month (millions)';
    }

像這樣的jsfiddle: http : //jsfiddle.net/e8aydv3h/1/

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM