Dojox チャートのパディングを移動するにはどうすればよいですか? 次に例を示します。
var chart1 = new dojox.charting.Chart2D("simplechart", {fill:"#FFC0C0"});
chart1.addPlot("default", {type:"Columns"});
chart1.addAxis("y", {type:"Invisible", includeZero:true, vertical: true});
chart1.addSeries("Series 1", [ 4,9,16,25,36,49,64,81,100 ]);
chart1.render();
これが生成されたプロットです。
http://www.flickr.com/photos/8110919@N02/5634624479/
チャートの周りのピンク色の領域を削除する方法はありますか?
ありがとう。