我正在使用一個主題,但我想在圖表周圍設置背景顏色爲白色或透明或其他。在圖表中設置背景顏色
我想這個代碼:
var myTheme = dojox.charting.themes.PlotKit.orange;
myTheme.fill= "white";
chart10.setTheme(myTheme);
chart10.addPlot("default", {
type: "Pie",
labelOffset: -30,
radius: 150,
startAngle: 45,
font: "normal normal 10pt Tahoma",
fontColor: "black",
labelWiring: "grey",
labelStyle: "columns",
htmlLabels: true,
plotarea: { fill: "#000" }
});
但這種代碼沒有工作,沒有改變是可見的。
如何設置顏色背景?
謝謝,作品也透明背景。 –