-
Notifications
You must be signed in to change notification settings - Fork 19.8k
Open
Description
Version
5.5
Link to Minimal Reproduction
Steps to Reproduce
Run the given reporduction link or check this code
option = {
series: [
{
type: 'treemap',
data: [
{
name: 'nodeA',
value: 10,
children: [
{
name: 'nodeAa',
value: 4
},
{
name: 'nodeAb',
value: 6
}
]
},
{
name: 'nodeB',
value: 20,
children: [
{
name: 'nodeBa',
value: 20,
children: [
{
name: 'nodeBa1',
value: 20
}
]
}
]
}
],
label: {
formatter: function () {
return "{img|}"
},
rich: {
img: {
backgroundColor: {
image: 'https://s3-symbol-logo.tradingview.com/reliance-industrial-infrastructure.svg',
},
height: 50,
width: 50,
borderRadius: 25
}
}
}
}
]
};
Current Behavior
Currently when set borderRadius, it not doing anything when backgroundColor is image
Expected Behavior
Image should have border radius.
Environment
- OS:
- Browser:
- Framework:
Any additional comments?
No response