|
|
Installation & Settings
Single web application installation
Copy CreativeCharts.dll in Bin directory of your web applicaition and add following code in your web.config file.
Gac Installation
Copy CreativeCharts.dll on your server where you want to install charting component.
gacutil /i CreativeCharts.dll
Add same code mentioned above in web.config file of each web application you are using or add same code in machine.config file.
Rendering option WebSession
Rendering Option is default option charting control will use this rendering option when no option is defined in web.config file. this option saves chartimage in session when created on page and then handler complets job of streaming image to web browser.
Rendering option WebCache
This option saves chartimage in Cache when created on page and then handler complets job of streaming image to web browser. you can also mention time that image will remmain in Cache.
Rendering option FileSystem
This option saves chart image on file system when created on page and then handler complets job of streaming image to web browser. you need to mention folder on file system where image should be saved
Folder where image is saved must have write permission for aspnet user.
Rendering option WebFolder
This option saves chart image inside web application on specified folder url of image is directly rendered on page there is no use of handler for this option.
Folder where image is saved must have write permission for aspnet user.
|