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
You should be able to add an annotation to the chart if there is no data.
TextAnnotation annotation = new TextAnnotation(); annotation.X = 50; annotation.Y = 50; annotation.Text = "No Data"; chart1.Annotations.Add(annotation);