开始使用
获取 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 的第一个图表!