I try to achieve stacked bar chart with round border as goal design
here is what I try with the sandbox
theme: {
overrides: {
bar: {
series: {
fillOpacity: 0.8,
cornerRadius: 8,
itemStyler: (s) => {
if (s.yKey == "iphone") {
return {
cornerRadius: 999,
fillOpacity: 0.1,
fill: "#cf5200",
};
}
},
},
},
},
},
the cornerRadius
inside itemStyler
is not doing anything
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1744057841a4551229.html
评论列表(0条)