参数一、
tooltip: { //鼠标放到线上后的提示内容 formatter: function () { //this.x 该点对应的x轴上的值 var s = '<b>' + this.x + '</b>'; //this.points 该点的横纵坐标所在的对象 $.each(this.points, function () { //this.series.name:该点的数据列的名字 //this.y 该点的y轴上对应的值 s += '<br/>' + this.series.name + ': ' + this.y + 'm'; }); return s;//返回一个字符串 }, shared: true },
二、chart.series[0].remove()//去掉图表下方series字样的显示
三、设置标题和y轴标题
$("#ylqxt").highcharts().setTitle({ text: respons[index]._tpressurename + "压力曲线图" }, { text: new Date().toLocaleString() });
$("#ylqxt").highcharts().yAxis[0].setTitle({ text: 'Mpa' });
四、
xAxis: { type: 'datetime',//类型:日期 minRange: 24 * 3600 * 1000,//x轴的跨度 1天 tickInterval: 1 * 3600 * 1000,//x轴上每个点的间隔 1小时 dateTimeLabelFormats: { day: '%H:%M:%S' } }
五、在x轴上添加点
$("#fake").highcharts().series[0].addPoint([Date.UTC(2010, 0, 1, 00, 00, 00), null]); $("#fake").highcharts().series[0].addPoint([Date.UTC(2010, 0, 1, 23, 59, 59), null]);