HighCharts 交互式图表-01-入门介绍
2017年5月27日大约 1 分钟
常见的图形库系列
Victory 图表基于 React,适合 React 项目,支持移动端
HighCharts
Highcharts 使开发人员能够在其网页中轻松设置交互式图表。
入门指南
导入 js
Highcharts 依赖于 jquery,因此您可以在您的 HTML 页面中导入它们:
- 创建容器
- 使用 Highcharts
$(function () {
$('#highchart-container').highcharts({
chart: {
type: 'bar'
},
title: {
text: '我的第一个图表'
},
xAxis: {
categories: ['苹果', '香蕉', '橙子']
},
yAxis: {
title: {
text: 'something'
}
},
series: [{
name: '小明',
data: [1, 0, 4]
}, {
name: '小红',
data: [5, 7, 3]
}]
});
});
然后,您可以看到:
贡献者
binbin.hou