Hello again,
I'm using ChartDirector to design my charts.
Generally, it works fine.
But I have a little problem using setPlotArea() option in some chart : it works ok for XY charts, not for any MS charts.
Code working :
...
select 'dbr.chart', 'Column', '', 900, 400;
select 'dbr.chart.options', 'chartdirector', '$c->setRoundedFrame(); $c-setDropShadow(); $c->setPlotArea(80, 50, 750, 250, 0xFFFFFF);';
...
Code not working :
...
select 'dbr.chart', 'StackedBar', '', 900, 300;
select 'dbr.chart.options', 'chartdirector', '$c->setRoundedFrame(); $c-setDropShadow(); $c->setPlotArea(60, 40, 600, 200, 0xffffff);';
...
There is no error, just that ploting doesn't "move" where it supposed to be...
Do you know why ? (I don't see any restriction in ChartDirector documentation)
Thank you