1 write to series
System.Windows.Forms.DataVisualization (1)
Common\DataManager\DataPoint.cs (1)
280 this.series = series;
37 references to series
System.Windows.Forms.DataVisualization (37)
Common\DataManager\DataPoint.cs (36)
289 DataPointInit(this.series, ref dataPoint); 418if (yFieldNames.GetLength(0) > series.YValuesPerPoint) 419throw (new ArgumentOutOfRangeException("yFields", SR.ExceptionDataPointYValuesCountMismatch(series.YValuesPerPoint.ToString(System.Globalization.CultureInfo.InvariantCulture)))); 475AutoDetectValuesType(this.series, enumerator, xField, enumerator, yFieldNames[0]); 481DataPoint newDataPoint = new DataPoint(series); 614 if(yValues.GetLength(0) > series.YValuesPerPoint) 616 throw(new ArgumentOutOfRangeException("yValues", SR.ExceptionDataPointYValuesBindingCountMismatch( series.YValuesPerPoint.ToString(System.Globalization.CultureInfo.InvariantCulture) ) ) ); 653 object[] yValuesObj = new object[series.YValuesPerPoint]; 684AutoDetectValuesType(this.series, xEnumerator, null, yEnumerator[0], null); 690DataPoint newDataPoint = new DataPoint(series); 788throw new ArgumentOutOfRangeException("yFields", SR.ExceptionDataPointYValuesCountMismatch(series.YValuesPerPoint.ToString(System.Globalization.CultureInfo.InvariantCulture))); 796if (yFieldNames.GetLength(0) > series.YValuesPerPoint) 797throw new ArgumentOutOfRangeException("yFields", SR.ExceptionDataPointYValuesCountMismatch(series.YValuesPerPoint.ToString(System.Globalization.CultureInfo.InvariantCulture))); 864AutoDetectValuesType(this.series, xEnumerator, xField, yEnumerator, yFieldNames[0]); 870DataPoint newDataPoint = new DataPoint(series); 979 DataPoint newDataPoint = new DataPoint(series); 1001 if(this.series.YValueType == ChartValueType.Auto && 1007this.series.YValueType = ChartValueType.DateTime; 1008this.series.autoYValueType = true; 1012this.series.YValueType = ChartValueType.DateTimeOffset; 1013this.series.autoYValueType = true; 1018 DataPoint newDataPoint = new DataPoint(series); 1036 DataPoint newDataPoint = new DataPoint(series); 1055 if(this.series.XValueType == ChartValueType.Auto) 1059 this.series.XValueType = ChartValueType.DateTime; 1063this.series.XValueType = ChartValueType.DateTimeOffset; 1067 this.series.XValueType = ChartValueType.String; 1070 this.series.autoXValueType = true; 1073 if(this.series.YValueType == ChartValueType.Auto && 1079this.series.YValueType = ChartValueType.DateTime; 1080this.series.autoYValueType = true; 1084this.series.YValueType = ChartValueType.DateTimeOffset; 1085this.series.autoYValueType = true; 1090 DataPoint newDataPoint = new DataPoint(series); 1107 DataPoint newDataPoint = new DataPoint(series); 1122 DataPoint newDataPoint = new DataPoint(series);
Common\General\Selection.cs (1)
2709cntxObj = dataPointCollection.series;