美文网首页
highcharts

highcharts

作者: 卡西莫多cc | 来源:发表于2016-12-21 14:48 被阅读0次

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'
}

相关文章

网友评论

      本文标题:highcharts

      本文链接:https://www.haomeiwen.com/subject/vueqvttx.html