When there is no data returned from the Database...the column chart throws an error.
"Column Chart Error: You must have atleast one row and one numeric column" in bright red color
How do I change this message to display something more customised?
Thanks
I've added this event handler.....
e.Text = "Data not available."
End Sub
but i'm not sure where to add
this.UltraChart1.InvalidDataReceived += new Infragistics.UltraChart.Shared.Events.ChartDataInvalidEventHandler(UltraChart1_InvalidDataReceived);
THanks
You can try handling InvalidDataReceived Event:
...
{
}