public override void Draw(RectangleF dirtyRect) { Graphics g = new Graphics(); cs.ChartArea = this.ClientRectangle; AddData(); SetPlotArea(g); cs.AddChartStyle(g); dc.AddLines(g, cs); g.Dispose(); }
public override void Draw(CGRect rect) { Graphics g = Graphics.FromCurrentContext(); cs.ChartArea = ClientRectangle; AddData(); SetPlotArea(g); cs.AddChartStyle(g); dc.AddLines(g, cs); g.Dispose(); }