I have a very simple UltraChart (version 9.2.20092.1003) on a page and the only non-default property I have set is:
DeplaymentScenario="Session"
But when I browser for the page it does not display any chart image and instead displays the icon that suggests "Image not found on server". Is there any other property I have to set or am I missing something?
Thanks,
Amol
Amol,
When the DeploymentScenario is set with Session, then you need to point to an image pipe. It does not use the ChartImages folder, which is for DeploymentScenario of FileSystem.
What you need to do is to create a separate web page and add a single control "SecureImagePipe". No other control should be on that page. Then with one line of code point to that page such as:
UltraChart1.ImagePipePageName = "ImagePipe.aspx";
Please refer to the following link for more information about the 2 deployment scenarios:
http://help.infragistics.com/NetAdvantage/ASPNET/current/CLR3.5/?page=Chart_Image_Deployment_in_WebChart.html
Let me know if you have any question.
Sam
Please let me know if you have any question.
No, it worked just fine, thanks!