-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Open
Description
Version
5.4
Link to Minimal Reproduction
https://echarts.apache.org/examples/zh/editor.html?c=calendar-graph&version=5.5.1&theme=dark
Steps to Reproduce
option = {
xAxis: {
type: 'value',
min: 0,
max: 100,
axisLine: { show: false },
axisTick: { show: false },
splitLine: { show: false }
},
yAxis: {
type: 'value',
min: 0,
max: 100,
inverse: true,
axisLine: { show: false },
axisTick: { show: false },
splitLine: { show: false }
},
series: [
{
type: 'lines',
name: '陕西-北京',
zlevel: 2,
symbol: ['none', 'none'],
symbolSize: 10,
effect: {
show: true,
period: 6,
trailLength: 0,
symbol: 'arrow',
color: '#FFC12F',
symbolSize: 10
},
lineStyle: {
normal: { color: '#fff', width: 2, opacity: 0.6, curveness: 0.2 }
},
coordinateSystem: 'cartesian2d',
data: [
{
coords: [
[54.1, 43.2],
[58.8, 38]
]
},
{
coords: [
[54.1, 43.2],
[58.8, 38]
]
},
{
coords: [
[54.1, 43.2],
[58.8, 38]
]
}
]
}
]
};
Current Behavior
5.3之前显示正常,5.4开始异常
Expected Behavior
5.3之前显示正常,5.4开始异常
Environment
- OS:
- Browser:
- Framework:
Any additional comments?
如何修改配置项使页面显示正常