血压代表血压像Withings一样?如何使用Highcharts?

时间:2016-09-20 13:18:16

标签: javascript css charts highcharts highstock

我有一个2系列的折线图,我们可以用两个不同的血压线表示数据。像下面提到的一样: - enter image description here

另一方面,我需要将图形更改为下面提到的图形。这是我的想法不起作用的地方。我无法理解如何获得两个点并加入它们,因为它们属于两个不同的系列。下面提到的图表将使用Highcharts。

enter image description here

帮助我了解这种情况可以使用哪种类型的图表。

1 个答案:

答案 0 :(得分:2)

如何在它们之间使用带有lineWidth和null点的散点图系列?这样的事情:http://jsfiddle.net/ssdg6nug/

$('#container').highcharts({
    chart: {
      type: 'scatter'
    },
    series: [{
      lineWidth: 1,
      data: [
        [0, 1],
        [0, 9],
        [0, null],
        [1, 13],
        [1, 9],
        [1, null],
        [2, 14],
        [2, 22],
        [2, null],
        [3, 11],
        [3, 21],
        [3, null],
      ]
    }]
});