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.
webchart's walls back image don't show on the 3 dimension
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hello,
This will only work in 3D if you set:
I've fixed this for the maintenance release due out in September.
This will only work in 3D if you set:
Code: Select all
tChart1.Walls.Back.ImageMode = Steema.TeeChart.Drawing.ImageMode.Tile;
Thank you!
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/