-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Description
Version
5.6.0
Link to Minimal Reproduction
https://echarts.apache.org/examples/zh/editor.html?c=radar&lang=ts
Steps to Reproduce
option = {
title: {
text: 'Basic Radar Chart'
},
legend: {
data: ['Allocated Budget', 'Actual Spending']
},
radar: {
indicator: [
{ name: 'Sales', max: 6500 },
{ name: 'Administration', max: 16000 },
{ name: 'Information Technology', max: 30000 },
{ name: 'Customer Support', max: 38000 },
{ name: 'Development', max: 52000 },
{ name: 'Marketing', max: 25000 }
]
},
series: [
{
name: 'Budget vs spending',
type: 'radar',
data: [
{
value: [4200, 3000, 20000, 35000, 50000, 18000],
name: 'Allocated Budget'
},
{
value: [5000, 14000, 28000, 26000, 42000, 21000],
name: 'Actual Spending'
}
],
emphasis: {
focus: 'self',
lineStyle: {
width: 2,
},
itemStyle: {
borderColor: null,
borderWidth: 2,
opacity: 1,
},
},
blur: {
lineStyle: {
opacity: 0.3,
},
itemStyle: {
opacity: 0.2,
shadowBlur: 5,
},
},
}
]
};
Current Behavior
雷达图非选中维度的“点”没有和“线”一起透明度降低
Expected Behavior
option = {
title: {
text: 'Basic Radar Chart'
},
legend: {
data: ['Allocated Budget', 'Actual Spending']
},
radar: {
indicator: [
{ name: 'Sales', max: 6500 },
{ name: 'Administration', max: 16000 },
{ name: 'Information Technology', max: 30000 },
{ name: 'Customer Support', max: 38000 },
{ name: 'Development', max: 52000 },
{ name: 'Marketing', max: 25000 }
]
},
series: [
{
name: 'Budget vs spending',
type: 'radar',
data: [
{
value: [4200, 3000, 20000, 35000, 50000, 18000],
name: 'Allocated Budget'
},
{
value: [5000, 14000, 28000, 26000, 42000, 21000],
name: 'Actual Spending'
}
],
emphasis: {
focus: 'self',
lineStyle: {
width: 2,
},
itemStyle: {
borderColor: null,
borderWidth: 2,
opacity: 1,
},
},
blur: {
lineStyle: {
opacity: 0.3,
},
itemStyle: {
opacity: 0.2,
shadowBlur: 5,
},
},
}
]
};
Environment
- OS:
- Browser:
- Framework:
Any additional comments?
No response