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
Hi Sam,
In our application , we are using a third party infragistic tool which is expecting to write the charts in a Virtual directory on which the user account who is login/working must have permission to read/write the files.
We have tried option -
Deployement.Scenario property as given in the below link -
http://help.infragistics.com/Help/Doc/ASPNET/2012.1/CLR4.0/html/Chart_Image_Deployment_in_WebChart.html
1) File based deployment -It’s also expecting virtual path not a physical path with read/write access for the user account(FilePath property).
2) Session based deployment- Managing sticky sessions might be an issue
Please provide your inputs or any other alternates
PS: Link http://help.infragistics.com/NetAdvantage/ASPNET/current/CLR3.5/?page=Chart_Image_Deployment_in_WebChart.html is not working.Please let me know how to implement session based deployment for infragistic chart controls.
Garima