Page 1 of 1

webchart's walls back image don't show on the 3 dimension

Posted: Wed Aug 09, 2006 7:00 am
by 9638762
why don't show walls back image on the 3 dimension?
.
my code is

***************************************************
string imagePath = this.GraphBackImage.ToString().Remove(0, 2);
imagePath = HttpContext.Current.Server.MapPath(imagePath);
Bitmap myBitMap = new Bitmap(imagePath);
System.Drawing.Image m = System.Drawing.Image.FromFile(imagePath);
myChart.Chart.Walls.Back.Image = m;
myChart.Chart.Walls.Back.ImageMode = this.GraphBackImageMode;
myChart.Chart.Walls.Back.ImageTransparent = true;

***************************************************
the code block working and wall back image showing while webchart is 2 dimension,
but don't work 3 dimension.
please help.

Posted: Wed Aug 09, 2006 4:58 pm
by Chris
Hello,

This will only work in 3D if you set:

Code: Select all

tChart1.Walls.Back.ImageMode = Steema.TeeChart.Drawing.ImageMode.Tile;
I've fixed this for the maintenance release due out in September.