改变主题轮廓颜色

时间:2013-01-29 16:20:06

标签: dojo dojox.charting

我使用Claro主题创建了一个饼图,并希望将轮廓颜色更改为透明或仅将其关闭。 Claro的默认背景颜色是浅灰色,我想将其更改为透明。在使用以下代码设置图表主题之前,我能够将背景颜色更改为透明:

theme.chart.fill={color: "transparent"};
theme.plotarea.fill={color: "transparent"};
chart.setTheme(theme);

我仍然在图表周围留下了浅灰色的边框。关于如何将其更改为透明或关闭它的任何想法?

1 个答案:

答案 0 :(得分:2)

您必须更改主题的“笔触”颜色,如下所示:

theme.chart.stroke = {color:"transparent"}

请参阅jsfiddle中的this demo