echarts 甘特图实例
时间: 2023-06-28 15:05:00 浏览: 236
项目进度图-甘特图(Gantt图)
以下是一个基于 echarts 的甘特图实例代码,可以参考:
```html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ECharts 示例</title>
<!-- 引入 echarts.js -->
<script src="https://cdn.jsdelivr.net/npm/echarts@4.9.0/dist/echarts.min.js"></script>
</head>
<body>
<!-- 定义一个容器用于渲染 echarts 图表 -->
<div id="main" style="width: 600px;height:400px;"></div>
<!-- echarts 配置 -->
<script type="text/javascript">
// 基于准备好的dom,初始化echarts实例
var myChart = echarts.init(document.getElementById('main'));
// 指定图表的配置项和数据
var option = {
title: {
text: '甘特图'
},
tooltip: {
formatter: function (params) {
var res = params.name + '<br/>';
res += '开始时间:' + params.data.start + '<br/>';
res += '结束时间:' + params.data.end + '<br/>';
return res;
}
},
grid: {
left: '3%',
right: '4%',
bottom: '3%',
containLabel: true
},
xAxis: {
type: 'time',
splitLine: {
show: false
}
},
yAxis: {
type: 'category',
data: ['任务1', '任务2', '任务3', '任务4', '任务5']
},
series: [
{
type: 'bar',
barWidth: 10,
itemStyle: {
normal: {
color: 'rgba(0,0,0,0)'
}
},
emphasis: {
itemStyle: {
color: 'rgba(0,0,0,0)'
}
},
data: [0, 0, 0, 0, 0],
animation: false,
label: {
show: true,
position: 'right',
formatter: function (params) {
return params.name
}
}
},
{
type: 'bar',
barWidth: 10,
label: {
show: true,
position: 'insideRight',
formatter: function (params) {
var duration = (params.data.end - params.data.start) / 1000 / 60 / 60 / 24;
duration += '天';
return duration;
}
},
data: [
{
name: '任务1',
value: [new Date(2021, 0, 1), new Date(2021, 0, 5)]
},
{
name: '任务2',
value: [new Date(2021, 0, 6), new Date(2021, 0, 10)]
},
{
name: '任务3',
value: [new Date(2021, 0, 11), new Date(2021, 0, 15)]
},
{
name: '任务4',
value: [new Date(2021, 0, 16), new Date(2021, 0, 20)]
},
{
name: '任务5',
value: [new Date(2021, 0, 21), new Date(2021, 0, 25)]
}
]
}
]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
```
这个实例展示了一个简单的甘特图,包括了任务名称、开始时间、结束时间和任务持续时间。你可以根据自己的需求修改数据和样式。
阅读全文