.netCHARTING v10.5 Documentation
Example 


Debug Property
Gets or sets a value that indicates whether debug messages are displayed below the chart.
Syntax
'Declaration
 
Public Property Debug As Boolean
'Usage
 
Dim instance As Chart
Dim value As Boolean
 
instance.Debug = value
 
value = instance.Debug
public bool Debug {get; set;}
Remarks
This property controls if error text is returned below the generated image if a problem occurs. This is typically used for debug purposes when initially developing charts. This is provided as a property so that your end users are not exposed to developer level errors. This property defaults to false
Example
Chart.Debug = true;
Chart.Debug = true
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