The ChartPrint.SetPrintRect method is documented in the Documentation.chm file found in the Quinn-Curtis\DotNet\docs directory. You specify a rectangle in normalized coordinates that the chart is printed to.
printobj.PrintSizeMode = ChartObj.PRT_RECT; printobj.SetPrintRect(new Rectangle2D(0.25, 0.25, 0.5, 0.5));
Download the ChartOfTheWeek archive and look at the current chart of the week (ChartOfTheWeek01-14-04). That has a simple printing example. |