The following configuration setting only applies to the flow layout mode.
By design, overlapping items cannot be converted to flow layout documents preserving their original location or size because flow layout does not support Z-order. However, Aspose.Words for Reporting Services tries to export such items as close to original as possible. It offers two methods of overlapping item resolution:
- Truncate items. Overlapping parts are truncated.
- Push items. Overlapping items are pushed in appropriate directions.
The first method is used by default as it allows to preserve original position of report items and does not affect surrounding contents. However, it may corrupt the items appearance. If you are not satisfied with the “truncate” method, you can try the “push” method. To specify that the “push” method should be used to resolve overlapping items, add the following lines to the <Extension> element corresponding to a particular renderer:
<Render>
…
<Extension Name="AWDOC" Type="Aspose.Words.ReportingServices.DocRenderer,Aspose.Words.ReportingServices">
<Configuration>
<OverlapResolutionMethod>Push</OverlapResolutionMethod>
</Configuration>
</Extension>
</Render>