This will remove all of the PictureBox controls from the particular container (i assume a graph in your case).
for (int i = this.Controls.Count - 1; i >= 0; i--)
{
PictureBox control = this.Controls[i] as PictureBox;
if (control == null)
continue;
control.Dispose();
}