Hi Prem,
The PrintOnSinglePage has been replaced by the LayoutMode and the PageColumns and PageRows properties, that mimic the print arrangement of all Office products.
To replace the PrintOnSinglePage=true behavior use this code:
this.Layout = PagedLayout.FitToPages;
this.PageColumns = 1;
this.PageRows = 1;
The property that is meant to replace LabelLeadLength is called LeadOffArrowLength. Please note, that the overall effect might not be the same, because the label layout algorithm has been changed. Currently the LeadOffArrowLength controls the length of the line segments that come straight out of the pie slices. The length of the horizontal parts of the label connectors is specified through the ConnectorLength property.
Regarding the axis scrollbar - you need to set the range of the axis view:
axis.PagingView.SetRange(New NRange1DD(0, 10), True);
Hope this helps - let us know if you meet any problems or have any questions.
Best Regards,
Nevron Support Team