我在Dojo中使用虚线和虚线创建了一个图表。
一切工作正常,除了虚线的背景为灰色。

如何删除线条的灰色背景?

var xChart = new dojox.charting.Chart2D("test-chart");
xChart.setTheme(dojox.charting.themes.Julie);
xChart.addAxis("x");
xChart.addPlot("default", {type: "Lines"});

xChart.addSeries("xscsd", [2,3,5,5,23,1,6],
   {stroke: {color: "red", width: 1.5, style:"Dot"}});

xChart.render();

最佳答案

默认主题定义灰色轮廓。添加系列时,请使用null覆盖轮廓。

xChart.addSeries("xscsd", [2,3,5,5,23,1,6],
                 {stroke: {color: "red", width: 1.5, style:"Dot"},
                     outline: null });

http://jsfiddle.net/cswing/qDL79/

10-06 13:50