HighChart官网
HighChart教程
曲线介绍
隐藏标题
title :{
text:null //设置标题为空
}
导出功能按钮隐藏
exporting: {
enabled: false //隐藏导出功能按钮
}
版权信息
credits:{
enabled: false // 禁用版权信息
}
描点 flags
series: [{
name: 'USD to EUR',
data: data,
id: 'dataseries'
// the event marker flags
}, {
type: 'flags',
data: [{
x: Date.UTC(2015, 5, 8),
title: 'C',
text: 'Stocks fall on Greece, rate concerns; US dollar dips'
}, {
x: Date.UTC(2015, 5, 12),
title: 'D',
text: 'Zimbabwe ditches \'worthless\' currency for the US dollar '
}],
onSeries: 'dataseries',
shape: 'circlepin',
width: 16
}]