Esempio n. 1
0
		/* G R A P H  P R I N T  R E G I O N */
		/*----------------------------------------------------------------------------
			%%Function: GraphPrintRegion
			%%Qualified: bg.BgGraph.GraphPrintRegion
			%%Contact: rlittle

		----------------------------------------------------------------------------*/
		GraphicBox GraphPrintRegion(RectangleF rcf, RectangleF rcfBanner, PrintPageEventArgs ev, bool fColor)
		{
			Grapher grph = new Grapher(rcf, ev.Graphics);

			grph.SetProps(gpPrint);
			grph.DrawBanner(ev.Graphics, rcfBanner);
//			grph.SetFirstQuarter(grphRef.GetFirstQuarter());
			grph.SetDataPoints(m_oData, null, null);
			grph.SetColor(fColor);
			return (GraphicBox)grph;
		}