Highcharts min max limits分开了吗?

时间:2013-05-07 14:09:49

标签: javascript charts highcharts

我在x轴上使用min和max选项来过滤给定from和to日期的数据 但 我希望结果图表与父图表分开 例 enter image description here

大图表是原始图表,最大最大限制形成蓝色X范围 结果是黄色方框中的3个点+两条线

我只希望连接在一起的3个点,我只需要在区间内绘制点数

another example我希望它忽略septemper点,并在8月和10月之间画线

$(function () {
$('#container').highcharts({
    chart: {
    },
    xAxis: {
        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
    },

    yAxis: {
        max: 200
    },

    series: [{
        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]        
    }]
});

});

0 个答案:

没有答案
相关问题