#Echarts:热力图 type: “heatmap“图例显示

html

DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="utf-8">
  <title>Heatmap on Cartesian - Apache ECharts Demotitle>
  <link rel="stylesheet" href="./style.css">
head>
<body>
  <div id="chart-container">div>
  <script src="https://registry.npmmirror.com/echarts/5.4.3/files/dist/echarts.min.js">script>
  <script src="./index.js">script>
body>
html>

js

var dom = document.getElementById("chart-container");
var myChart = echarts.init(dom, null, {
  renderer: "canvas",
  useDirtyRect: false,
});
var app = {};

var option;

// prettier-ignore
const hours = [
    '10:28', '10:29', '11:29', '12:29'
];
// prettier-ignore
const data = [
  {
    name: '111',
    value: [0, 2, 10], // 转换为数值类型
    groupId: hours[0],
  },
  {
    name: '222',
    value: [1, 2, 100], // 转换为数值类型
    groupId: hours[1],
  },
  {
    name: '333',
    value: [2, 2, 10], // 转换为数值类型
    groupId: hours[2],
  }
];
option = {
  tooltip: {
    position: "top",
    formatter: (params) => {
      return `${params.data.groupId} 
${params.marker} ${params.name} `
; }, }, grid: { height: "50%", top: "10%", }, xAxis: { type: "category", data: hours, splitArea: { show: true, }, }, yAxis: { type: "category", data: ["", "", "", "", ""], splitArea: { show: true, }, }, visualMap: { show: true, type: "piecewise", pieces: [ { value: 10, color: "green", label: "正常", }, { value: 100, color: "pink", label: "异常", }, ], orient: "horizontal", left: "center", bottom: "15%", }, series: [ { type: "heatmap", data: data, label: { show: true, }, emphasis: { itemStyle: { shadowBlur: 10, shadowColor: "rgba(0, 0, 0, 0.5)", }, }, itemStyle: { borderWidth: 1, borderColor: "#fff", }, }, ], }; if (option && typeof option === "object") { myChart.setOption(option); } window.addEventListener("resize", function () { myChart.resize(); });

效果

#Echarts:热力图 type: “heatmap“图例显示_第1张图片

你可能感兴趣的:(#Echarts,echarts)