1.调用highcharts
$('#container').highcharts(json);
2.设置图表类型
//基本语法
json.chart=type;
var type={
type:'area'
};
//type类型有个
line(default) 折线曲线图
area 区域图
bar 条形图
column 柱形图
3.设置图表标题
json.title=title;
var title={
text:'this is a test title for chart'
}
4.设置图表副标题
json.subtitle=subtitle;
var subtitle={
text:'this is a test subtitle for chart'
}