option = {
series: [
{
...
label: {
formatter: params => {
return `{color${params.dataIndex}|${params.name}(${params.value})}`
},
},
...
},
{
...
label: {
position: 'inside',
formatter: `{data|{c}}\n{serie|{a}}`,
rich: {
data: {
fontWeight: 'bold',
fontSize: 24,
color: `#f00`,
lineHeight: 36,
textBorderColor: `transparent`,
textBorderWidth: 0
},
serie: {
fontSize: 16,
color: `#0f0`,
lineHeight: 28,
textBorderColor: `transparent`,
textBorderWidth: 0
}
}
},
...
}
]
};
