itemStyle: { color: { type: 'radial', // 渐变类型 x: 0.5, // 渐变中心点的 x y: 0.5, // 渐变中心点的 y r: 0.5, // 渐变的半径 colorStops: [ { offset: 0, color: 'red' }, // 渐变起始颜色 { offset: 1, color: 'yellow' } // 渐变结束颜色 ], global: false } }