颜色x,y Plotbands highcharts

时间:2017-05-16 07:43:07

标签: angularjs highcharts ionic2

这是一种为平方绘图带着色的方法,例如x上的0到1和y上的9到10? 我想在x上每10个点着色,从0到10,从10到20,相同颜色在负,镜面效果,但y必须是负,从0到-10。 enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用多边形在plotBands无法覆盖的图形的某些区域上着色。

http://jsfiddle.net/highcharts/qhtec334/

$('#container').highcharts({
    series: [{
        name: 'Polygons',
        type: 'polygon',
        data: [
            [2, 100],
            [3, 100],
            [3, 200],
            [2, 200],
            null, // allows multiple polygons         
            [6, 100],
            [8, 100],
            [8, 200],
            [6, 200]
        ]
    }, {
        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4]
    }]

});