I wish to print a chart. I do as follow :
var printJob : PrintJob = new PrintJob();
if ( printJob.start() == false )
return;
var printOptions : PrintJobOptions = new PrintJobOptions( true );
printJob.addPage( lineChart, null, printOptions );
printJob.send();
but as a result i am receiving only 1 page which containing only some part of the chart.
- How to scale the whole chart on 1 page, and how to print all of the chart pages when it is not scaled ?