qq_39538215
2017-09-07 09:39echarts折线图问题! 大神求教
自己做的效果图 我遇到两个问题 一个echarts两个折线图下面渐变色区域叠堆了如何解决
第二个我想让他从屏幕最左侧出来到最右侧消失 但是节点还是只显示这五个如何解决
series : [ {
name : '最高气温',
type : 'line',
smooth : true,
showAllSymbol : true,
symbolSize : 8,
symbol : 'circle',
itemStyle : {
/*
* normal:{areaStyle:{color: '#DDEAFB', shadowBlur: 10,
* shadowColor: 'rgba(0, 0, 0, 2)'}}
*/
normal : {
color : '#FF8B4C',
shadowColor : 'rgba(0, 0, 0, 0.5)',
shadowBlur : 8,
shadowOffsetY : 2
}
},
//渐变色设置
areaStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
offset: 0,
color: 'rgba(251,209,139,0.7)'
}, {
offset: 1,
color: 'rgba(255,255,255,0.6)'
}])
}
},
lineStyle : {
normal : {
shadowColor : 'rgba(0, 0, 0, 0.5)',
shadowBlur : 2,
shadowOffsetY : 2
}
},
label : {
normal : {
show : true,
position : 'top',
formatter : '{c}℃'
}
},
data : data1
}, {
name : '最低气温',
type : 'line',
smooth : true,
showAllSymbol : true,
symbolSize : 8,
symbol : 'circle',
itemStyle : {
/*
* normal:{areaStyle:{color: '#B6E6D0', shadowBlur: 20,
* shadowColor: 'rgba(0, 0, 0, 2)'}}
*/
normal : {
color : '#5FBCF2',
shadowColor : 'rgba(0, 0, 0, 0.5)',
shadowBlur : 8,
shadowOffsetY : 2
}
},
areaStyle: {
normal: {
color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
offset: 0,
color: 'rgba(137,208,245,0.7)'
}, {
offset: 1,
color: 'rgba(255,255,255,0.6)'
}])
}
},
lineStyle : {
normal : {
shadowColor : 'rgba(0, 0, 0, 0.5)',
shadowBlur : 2,
shadowOffsetY : 2
}
},
label : {
normal : {
show : true,
position : 'bottom',
formatter : '{c}℃'
}
},
data : lowest
} ] 贴上我自己的代码
- 点赞
- 回答
- 收藏
- 复制链接分享
0条回答
为你推荐
- silverlight用visifire画折线图的问题
- net
- silverlight
- 0个回答
- python用plotly绘制折线图为什么跑下来没有图
- python
- 4个回答
- echarts折线图查看24小时数据
- echarts3.0
- 1个回答
- python matplotlib.pyplot画折线图
- python
- 折线图
- 3个回答
- ajax获取后台数据在echarts上显示的是undefined
- ajax
- echarts
- 数据
- 10个回答