本帖最后由 豪~豪 于 2022-2-23 16:40 编辑
无判断
- Forguncy.Helper.preSetEchartOption = function (option, pageName, chartName) {
- option.series[0].itemStyle.opacity = 0.5,
- option.series[0].itemStyle.color = new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: '#83bff6' },
- { offset: 0.5, color: '#188df0' },
- { offset: 1, color: '#188df0' }
- ])
- }
复制代码 有判断,判断页面名称和图表名称
- Forguncy.Helper.preSetEchartOption = function (option, pageName, chartName) {
- if (pageName == "页面1" && chartName == "Chart1") {
- option.series[0].itemStyle.opacity = 0.5,
- option.series[0].itemStyle.color = new echarts.graphic.LinearGradient(0, 0, 0, 1, [
- { offset: 0, color: '#83bff6' },
- { offset: 0.5, color: '#188df0' },
- { offset: 1, color: '#188df0' }
- ])
- }
- }
复制代码
|