dotnetCHARTING Send comments on this topic.
Debug Property
See Also  Example
dotnetCHARTING Namespace > Chart Class : Debug Property


Gets or sets a value that indicates whether debug messages are displayed below the chart.

Syntax

Visual Basic (Declaration) 
Public Property Debug As Boolean
Visual Basic (Usage)Copy Code
Dim instance As Chart
Dim value As Boolean
 
instance.Debug = value
 
value = instance.Debug
C# 
public bool Debug {get; set;}

Example

C#Copy Code
Chart.Debug = true;
    
Visual BasicCopy Code
Chart.Debug = true

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

See Also

© 2010 All Rights Reserved.