echarts日历热力图代码
时间: 2023-07-09 13:35:51 浏览: 85
Python如何绘制日历图和热力图
以下是一个简单的 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>
<!-- 创建一个容器用于渲染图表 -->
<div id="main" style="width: 800px;height: 600px;"></div>
<script>
// 初始化 ECharts 实例
var myChart = echarts.init(document.getElementById('main'));
// 配置项
var option = {
// 设置图表标题
title: {
text: '日历热力图'
},
// 设置提示框
tooltip: {
formatter: function (params) {
return '日期:' + params.name + '<br>数量:' + params.value[1];
}
},
// 设置日历坐标系
calendar: {
range: ['2020-01-01', '2020-12-31'],
// 设置日历格子的样式
cellSize: ['auto', 20],
// 设置日历坐标系的位置和大小
left: 'center',
top: 'middle',
width: '70%',
height: '80%',
// 设置日历格子的样式
itemStyle: {
normal: {
borderWidth: 0.5
}
},
// 设置日历格子上的文本样式
dayLabel: {
nameMap: 'cn',
color: '#000',
firstDay: 1
},
// 设置日历格子上的图形样式
monthLabel: {
nameMap: 'cn',
color: '#999'
}
},
// 设置数据
series: [{
type: 'heatmap',
coordinateSystem: 'calendar',
data: [
['2020-01-01', 10],
['2020-02-01', 20],
['2020-03-01', 30],
['2020-04-01', 40],
['2020-05-01', 50],
['2020-06-01', 60],
['2020-07-01', 70],
['2020-08-01', 80],
['2020-09-01', 90],
['2020-10-01', 100],
['2020-11-01', 110],
['2020-12-01', 120]
],
// 设置热力图的样式
itemStyle: {
emphasis: {
shadowBlur: 10,
shadowColor: 'rgba(0, 0, 0, 0.5)'
}
}
}]
};
// 使用刚指定的配置项和数据显示图表。
myChart.setOption(option);
</script>
</body>
</html>
```
你可以将以上代码复制到一个 HTML 文件中并在浏览器中打开查看效果。
阅读全文