首页 > 代码库 > JQuery图形插件,Highcharts平滑线条处理方法
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();
第二种:动态数据
JQuery图形插件,Highcharts平滑线条处理方法
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。