JQuery图形插件,Highcharts平滑线条处理方法

第一种:静态数据

 

$(#THChartDiv).highcharts({
    chart: {
        type: spline
    },
    title: {
        text:过程线},
    xAxis: {
    title: {
            text: X
    }
},
yAxis: {
    title: {
            text: Y
    }
},
tooltip: {
    enabled: true,
    formatter: function () {
        return this.y +  + this.x;
    }
},
legend: {
    enabled: false
},
plotOptions: {
    line: {
            dataLabels: {
                enabled: true
            },
        enableMouseTracking: false
    }
},
series: [{
    name: XY,
    data: [[3.9, 4.2], [5.7, 8.5], [8.9, 15.2], [17.0, 26.6], [34.2, 50.3], [46.6, 74.8]]
}]
});
chart = $(#THChartDiv).highcharts();


第二种:动态数据

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。