.netCHARTING v10.5 Documentation
Example 


FileName Property (FileManager)
Sets the file name to save an image as, or gets the file name of an image that has been saved in the TempDirectory after a chart is generated.
Syntax
'Declaration
 
Public Property FileName As String
'Usage
 
Dim instance As FileManager
Dim value As String
 
instance.FileName = value
 
value = instance.FileName
public string FileName {get; set;}
Remarks
When empty, a random name will be created. In order for the cleanup system to include custom file names they must start with 'dnc-', the mask is: 'dnc-*.*'.
Example
Chart.FileManager.FileName="saleChart";
Chart.FileManager.FileName="saleChart"
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also