如何使用曲线或圆弧连接图形点

时间:2017-06-08 11:14:33

标签: javascript php highcharts

我使用highcharts制作图表。我的图表如下所示, My Graph

我想使用圆弧或曲线合并点。所以我的例外输出如下所示,

enter image description here

我也在使用PlotLines在Yaxis中绘制一条线。我想在PlotLine中标记这一点。我使用以下代码来制作此图表。

$(document).ready(function () {


var left = [[4,7],[9,2]];
var right = [[2,2],[9,9]];


Highcharts.chart('container', {



title:{
    text:''
},

tooltip: { enabled: false },      

exporting: { enabled: false },

credits: {enabled: false},


plotOptions: {
    series: {
        pointStart: 1

    }
},

xAxis: {
    max: 10,
    min: 1,
    tickInterval: 1
},

 yAxis: {
    max: 11,
    min: 0,
    tickInterval: 1,

    plotLines: [{
        color: 'black', 
        value: 5.5,
        width: 2

    }],

},



series: [{
    showInLegend: false,
    data: left
},
{
    showInLegend: false,
    data: right
},

],


});

});

0 个答案:

没有答案