dotnetCHARTING Send comments on this topic.
LoadState Method
See Also  Example
dotnetCHARTING Namespace > Chart Class : LoadState Method



Imports a chart object from the specified xml file.

Overload List

OverloadDescription
LoadState(String) Imports a chart object from the specified xml file.  
LoadState(String,Boolean) Imports a chart object from the specified xml file.  
LoadState(String,Chart) Set the chart object from the specified xml file.  
LoadState(String,Chart,Boolean) Set the chart object from the specified xml file.  

Example

This examples demonstrate different ways of accessing the same xml file in temp directory: 'c:/inetpub/wwwroot/app/temp/Chart.xml' when the applications is located in ...wwwroot/app. when started with '/' the folder resets to c:/inetpub/wwwroot/.
C#Copy Code
Chart.LoadState("c://inetpub/wwwroot/app/temp/chart.xml"); 
Chart.LoadState("/app/temp/chart.xml"); 
Chart.LoadState("chart.xml"); 
Visual BasicCopy Code
Chart.LoadState("c://inetpub/wwwroot/app/temp/chart.xml")
Chart.LoadState("/app/temp/chart.xml")
Chart.LoadState("chart.xml")

Remarks

This property takes either a raw xml string or an xml file name. For an xml file name it takes either an absolute path 'c:/inetpub/wwwroot/app/chart.xml', a physical UNC path ('\\myUncPath\cahrt.xml'), a relative path ('temp/chart.xml',) or when started with '/' a relative path from c:/inetpub/wwwroot/ ('/app/chart.xml), or only a file name 'chart.xml' in the temp directory.

See Also