Files
dvcp_v2_webapp/components/AiEchart/template/line/lineChart3.js

22 lines
436 B
JavaScript
Raw Normal View History

2022-03-25 11:09:26 +08:00
export default {
2023-03-10 10:54:54 +08:00
// legend: {
// right: 0, itemGap: 16,
// textStyle: {color: '#fff', padding: [0, 0, 0, 8], fontSize: 14},
// },
2022-03-25 11:09:26 +08:00
grid: {
left: 50, right: 0
},
tooltip: {
trigger: 'axis', backgroundColor: 'rgba(14, 51, 111, 0.9)', borderColor: '#1A6ABC',
textStyle: {color: '#fff'}
},
daemon: {
2023-03-10 10:54:54 +08:00
smooth: true,
lineStyle: {
shadowBlur: 1,
shadowOffsetY: 2,
width: 2
}
2022-03-25 11:09:26 +08:00
}
}