入门
获取 Apache ECharts
Apache ECharts 支持多种下载方式,在下一教程 安装 中将进一步说明。在此,我们以从 jsDelivr CDN 获取为例,说明如何快速安装。
在 https://www.jsdelivr.com/package/npm/echarts 中选择 dist/echarts.js
,点击并将其另存为 echarts.js
文件。
有关这些文件的更多信息,请参阅下一教程 安装。
包含 ECharts
在刚保存 echarts.js
的目录中创建一个新的 index.html
文件,内容如下
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<!-- Include the ECharts file you just downloaded -->
<script src="echarts.js"></script>
</head>
</html>
当您打开此 index.html
时,您将看到一个空页面。但不要担心。打开控制台并确保没有报告任何错误消息,然后您可以继续执行下一步。
绘制一个简单的图表
在绘制之前,我们需要为 ECharts 准备一个 DOM 容器,并定义其高度和宽度。在前面介绍的 </head>
标记之后添加以下代码。
<body>
<!-- Prepare a DOM with a defined width and height for ECharts -->
<div id="main" style="width: 600px;height:400px;"></div>
</body>
然后,您可以使用 echarts.init 方法初始化一个 echarts 实例,并使用 setOption 方法设置 echarts 实例以生成一个简单的条形图。这是完整的代码。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>ECharts</title>
<!-- Include the ECharts file you just downloaded -->
<script src="echarts.js"></script>
</head>
<body>
<!-- Prepare a DOM with a defined width and height for ECharts -->
<div id="main" style="width: 600px;height:400px;"></div>
<script type="text/javascript">
// Initialize the echarts instance based on the prepared dom
var myChart = echarts.init(document.getElementById('main'));
// Specify the configuration items and data for the chart
var option = {
title: {
text: 'ECharts Getting Started Example'
},
tooltip: {},
legend: {
data: ['sales']
},
xAxis: {
data: ['Shirts', 'Cardigans', 'Chiffons', 'Pants', 'Heels', 'Socks']
},
yAxis: {},
series: [
{
name: 'sales',
type: 'bar',
data: [5, 20, 36, 10, 10, 20]
}
]
};
// Display the chart using the configuration items and data just specified.
myChart.setOption(option);
</script>
</body>
</html>
这就是您使用 Apache ECharts 绘制的第一个图表!