Use this property to display a bitmap within a ColorGrid.
public Bitmap Bitmap {get; set;}

Example

This sample shows how to use the ColorGrid.Bitmap property:

private void SetFlower() {
	MemoryStream ms = new MemoryStream();
	Image flower = pictureBox1.Image;
	flower.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
	Bitmap bm = new Bitmap(ms);
	colorGrid1.Bitmap = bm;
}

Remarks


Use this property to display a bitmap within a ColorGrid.

See Also

ColorGrid Class | ColorGrid Members | Steema.TeeChart.Styles Namespace