You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@echarts.apache.org by GitBox <gi...@apache.org> on 2021/03/11 06:06:59 UTC

[GitHub] [echarts-examples] CoconutYz commented on issue #6: echarts如何绘制泰勒曲线?

CoconutYz commented on issue #6:
URL: https://github.com/apache/echarts-examples/issues/6#issuecomment-796483963


   > 我解决了
   > <img alt="WX20200817-165342@2x" width="1650" src="https://user-images.githubusercontent.com/3960716/90377355-7af28e00-e0aa-11ea-91e5-7f07ed07a6df.png">
   
   请问是怎么解决的,最近也遇到了同样的问题,求教


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@echarts.apache.org
For additional commands, e-mail: dev-help@echarts.apache.org


回复:[GitHub] [echarts-examples] CoconutYz commented on issue #6: echarts如何绘制泰勒曲线?

Posted by 夜猫子 <43...@qq.com>.
&nbsp;我目前把线条给他加了个样式
		series: [{
				name: '时段消费',
				type: 'line',
				data: [],
				itemStyle: {
					normal: {
						lineStyle: {
							width: 3 //设置线条粗细
						}
					}
				}
			},
			{
				markPoint: {
					data: [{
						type: 'max',
						name: '最大值'
					}, {
						type: 'min',
						name: '最小值'
					}]
				},
				name: '时段消费汇总',
				type: 'line',
				data: [],
				itemStyle: {
					normal: {
						lineStyle: {
							width: 3 //设置线条粗细
						}
					}
				}
			}
		]





//加的
itemStyle: {
					normal: {
						lineStyle: {
							width: 3 //设置线条粗细
						}
					}
				}
问题应该是出现在他默认的线条粗线的问题,目前还在试不知道会不会有bug,&nbsp;这种强制指定粗细&nbsp; 试了比原来的粗&nbsp;&nbsp;