If an exception occur in the UltraChat, it would display a big red cross in UltraChat control.
Can I handle the exception and avoid this red cross?!
Thank you!!!
it sounds like an exception occurring as a result of the chart's OnPaint method, so it's not simple exception handling.
but you can inherit the chart, override OnPaint, and handle the exception there...
public class MyChart : UltraChart
{
public override void OnPaint(PaintEventArgs e)
try
base.OnPaint(e);
}
catch
// insert code to handle exception