var highchartsOptions = { chart:{ renderTo:'container' }, title:{ text:'指标数据' }, tooltip:{ pointFormat:'{series.name}:{point.y}' }, xAxis:{ categories:[] }, yAxis:{ title:{ text:'数值' } }, series:[]};
/** *categories:[] *series:[ * { * name:'' * data:[] * } * ] */ function changeHighchartsOption(categories,series){ highchartsOptions.xAxis.categories = categories; highchartsOptions.series = series; newHighcharts('line'); } function newHighcharts(type){ highchartsOptions.chart.type = type; new Highcharts.Chart(highchartsOptions); }