143 lines
2.6 KiB
HTML
143 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<div
|
|
id="app"
|
|
style="width: 100vw; height: 80vh; background: #ccc3; margin: 24px"></div>
|
|
|
|
<script src="./echarts.js"></script>
|
|
<script>
|
|
const option = {
|
|
tooltip: {
|
|
trigger: 'axis',
|
|
axisPointer: {
|
|
type: 'line',
|
|
label: {
|
|
backgroundColor: '#6a7985',
|
|
},
|
|
},
|
|
},
|
|
grid: [
|
|
{
|
|
id: 0,
|
|
top: 10,
|
|
height: 40,
|
|
},
|
|
{
|
|
id: 1,
|
|
top: 80,
|
|
height: 40,
|
|
},
|
|
],
|
|
xAxis: [
|
|
{
|
|
id: 0,
|
|
gridIndex: 0,
|
|
type: 'category',
|
|
axisTick: {
|
|
alignWithLabel: true,
|
|
inside: true,
|
|
},
|
|
boundaryGap: false,
|
|
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
|
|
},
|
|
{
|
|
id: 1,
|
|
gridIndex: 0,
|
|
axisLabel: { show: false },
|
|
axisLine: { show: false },
|
|
},
|
|
{
|
|
id: 2,
|
|
gridIndex: 1,
|
|
type: 'category',
|
|
axisTick: {
|
|
alignWithLabel: true,
|
|
inside: true,
|
|
},
|
|
boundaryGap: 10,
|
|
data: ['mon', 'tue', 'wed', 'thu', 'fri', 'sat', 'sun'],
|
|
},
|
|
{
|
|
id: 3,
|
|
gridIndex: 1,
|
|
axisLabel: { show: false },
|
|
axisLine: { show: false },
|
|
},
|
|
],
|
|
yAxis: [
|
|
// 主y轴
|
|
{
|
|
id: 0,
|
|
gridIndex: 0,
|
|
type: 'value',
|
|
splitLine: { show: false },
|
|
name: '设备1',
|
|
nameLocation: 'center',
|
|
nameGap: 56,
|
|
nameRotate: 0,
|
|
nameTextStyle: {
|
|
fontSize: 18,
|
|
},
|
|
axisLine: {
|
|
show: true,
|
|
lineStyle: {},
|
|
},
|
|
axisLabel: { show: false },
|
|
axisTick: { show: false },
|
|
},
|
|
// 辅y轴
|
|
{
|
|
id: 1,
|
|
gridIndex: 0,
|
|
type: 'value',
|
|
splitLine: { show: false },
|
|
axisLabel: { show: false },
|
|
axisTick: { show: false },
|
|
},
|
|
{
|
|
id: 2,
|
|
gridIndex: 1,
|
|
type: 'value',
|
|
axisLine: {},
|
|
splitLine: { show: false },
|
|
name: '设备2',
|
|
nameLocation: 'center',
|
|
nameGap: 56,
|
|
nameRotate: 0,
|
|
nameTextStyle: {
|
|
fontSize: 18,
|
|
},
|
|
},
|
|
{ id: 3, gridIndex: 1 },
|
|
],
|
|
series: [
|
|
{
|
|
xAxisIndex: 0,
|
|
yAxisIndex: 0,
|
|
data: [1, 2, 3, 4, 5],
|
|
type: 'line',
|
|
},
|
|
{
|
|
xAxisIndex: 2,
|
|
yAxisIndex: 2,
|
|
data: [1, 2, 3, 4, 5],
|
|
type: 'line',
|
|
},
|
|
],
|
|
};
|
|
|
|
const el = document.getElementById('app');
|
|
const myChart = echarts.init(el);
|
|
|
|
console.log('mychart', myChart);
|
|
myChart.setOption(option);
|
|
</script>
|
|
</body>
|
|
</html>
|