I have a problem with printing and GoXam. Regardless of the scale I set, I always get just part of my diagram, instead of the full diagram. For example, with the following XAML:
<go:Diagram.PrintManager>
<go:PrintManager PageOptions=“Full” Scale=“NaN”/>
</go:Diagram.PrintManager>
I have a print button, which I hookup like this:
// Hookup our Print Handler to the Print Button
btnPrintDiagram.Command = competencyEditorDiagram.CommandHandler.PrintCommand;
Like I said, I only get part of my diagram. Only the upper left corner is showing the partial diagram, the rest of the printed page is blank.
Do I need to set the printing paper size of something like that?
Bennie