export function getLineAxisPointer() { const axisPointer = { show: true, type: 'line', lineStyle: { color: '#555', width: 0 } } return axisPointer; } export function getShadowAxisPointer() { const axisPointer = { show: true, type: 'shadow', shadowStyle: { // color: 'rgba(150,150,150,0.3)', color: 'rgba(204,214,235,0.25)', } } return axisPointer; }