public Bitmap Bitmap {get; set;}
Example
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