14 references to Chart
System.Web.DataVisualization (14)
Common\Annotation\AnnotationCollection.cs (6)
128
if (textAnnotation != null && string.IsNullOrEmpty(textAnnotation.Text) &&
Chart
!= null &&
Chart
.IsDesignMode())
259
Chart
!= null)
261
int areaIndex =
Chart
.ChartAreas.IndexOf(annotation.ClipToChartArea);
265
ChartArea chartArea =
Chart
.ChartAreas[areaIndex];
281
annotation.Paint(
Chart
, chartGraph);
Common\DataManager\DataSeries.cs (5)
142
if (item != null &&
Chart
!= null)
144
if (String.IsNullOrEmpty(item.ChartArea) &&
Chart
.ChartAreas != null)
146
item.ChartArea =
Chart
.ChartAreas.DefaultNameReference;
148
if (String.IsNullOrEmpty(item.Legend) &&
Chart
.Legends != null)
150
item.Legend =
Chart
.Legends.DefaultNameReference;
Common\General\BaseCollections.cs (2)
411
if (
Chart
!=null && !
Chart
.serializing && !IsNameReferenceValid(name))
Common\General\Legend.cs (1)
4932
if (legend.DockedToChartArea != Constants.NotSetValue && this.
Chart
.ChartAreas.IndexOf(legend.DockedToChartArea)<0)