如何去除dojo折线图中虚线的灰色背景?

我使用虚线和虚线在Dojo中创建了一个图表。 一切工作正常,但虚线的背景是灰色的。如何去除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();

回答:

默认主题定义了一个灰色轮廓。添加系列时,将空白覆盖为空。

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/

以上是 如何去除dojo折线图中虚线的灰色背景? 的全部内容, 来源链接: utcz.com/qa/260905.html

回到顶部