Is there a way to display a \"default\" message on a MS Chart Control if there is no data to chart?
I have a chart, with some controls that allow the user to pick variou
I guess that you cast retrieved data to an Array and use it for chart binding, if so
you can use a label, show/hide it according array length, as there is no property to be displayed a certain text if chart has no data.
if (arr.Length > 0)
{
lblEmptyMSG.Visible = false;
}
else
{
lblEmptyMSG.Visible = true;
}