1. 首页
  2. 百度ECharts
  3. ECharts实例
  4. ECharts入门
  5. ECharts官网

百度echarts实现折线图渐变(从左到右)

2021年07月22日 10:56:22

在series中添加以下语句

itemStyle: {
	normal: {
		color: {
			type: 'linear',
			x: 0,
			y: 0,
			x2: 0,
			y2: 1,
			colorStops: [{
				offset: 0,
				color: '#f3d015' // 0% 处的颜色
			}, {
				offset: 1,
				color: '#f94729' // 100% 处的颜色
			}],
			global: false // 缺省为 false
		}
	}
}
点击展开全文

Echarts入门