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

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
glikoz
Newbie
Newbie
Posts: 50
Joined: Fri Oct 07, 2005 4:00 am

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

Post by glikoz » Wed Aug 09, 2006 7:00 am

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.

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Wed Aug 09, 2006 4:58 pm

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.
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/

Post Reply