220 references to ChartValueType
System.Web.DataVisualization (220)
Common\ChartTypes\BarChart.cs (4)
430 (ser.XValueType == ChartValueType.Date || 431ser.XValueType == ChartValueType.DateTime || 432ser.XValueType == ChartValueType.Time || 433ser.XValueType == ChartValueType.DateTimeOffset))
Common\ChartTypes\ColumnChart.cs (4)
344(ser.XValueType == ChartValueType.Date || 345ser.XValueType == ChartValueType.DateTime || 346ser.XValueType == ChartValueType.Time || 347ser.XValueType == ChartValueType.DateTimeOffset))
Common\ChartTypes\StackedBarChart.cs (4)
696(ser.XValueType == ChartValueType.Date || 697ser.XValueType == ChartValueType.DateTime || 698ser.XValueType == ChartValueType.Time || 699ser.XValueType == ChartValueType.DateTimeOffset))
Common\ChartTypes\StackedColumnChart.cs (4)
706(ser.XValueType == ChartValueType.Date || 707ser.XValueType == ChartValueType.DateTime || 708ser.XValueType == ChartValueType.Time || 709ser.XValueType == ChartValueType.DateTimeOffset))
Common\Converters\AxisConverters.cs (4)
390if (axis.GetAxisValuesType() == ChartValueType.DateTime || 391axis.GetAxisValuesType() == ChartValueType.Date || 392axis.GetAxisValuesType() == ChartValueType.Time || 393axis.GetAxisValuesType() == ChartValueType.DateTimeOffset)
Common\DataManager\DataPoint.cs (38)
1001 if(this.series.YValueType == ChartValueType.Auto && 1007this.series.YValueType = ChartValueType.DateTime; 1012this.series.YValueType = ChartValueType.DateTimeOffset; 1055 if(this.series.XValueType == ChartValueType.Auto) 1059 this.series.XValueType = ChartValueType.DateTime; 1063this.series.XValueType = ChartValueType.DateTimeOffset; 1067 this.series.XValueType = ChartValueType.String; 1073 if(this.series.YValueType == ChartValueType.Auto && 1079this.series.YValueType = ChartValueType.DateTime; 1084this.series.YValueType = ChartValueType.DateTimeOffset; 1325 if(series.XValueType == ChartValueType.Auto) 1328 if(series.XValueType != ChartValueType.Auto) 1333 if(series.YValueType == ChartValueType.Auto) 1336 if(series.YValueType != ChartValueType.Auto) 1348 private static ChartValueType GetValueType(IEnumerator enumerator, string field) 1350 ChartValueType type = ChartValueType.Auto; 1513 type = ChartValueType.DateTime; 1515type = ChartValueType.DateTimeOffset; 1517type = ChartValueType.Time; 1519type = ChartValueType.Double; 1521 type = ChartValueType.Int32; 1523 type = ChartValueType.Int64; 1525 type = ChartValueType.Single; 1527 type = ChartValueType.String; 1529 type = ChartValueType.UInt32; 1531 type = ChartValueType.UInt64; 1927 ChartValueType valueType = ChartValueType.Auto; 1931 valueType = ChartValueType.Date; 2126 if(base.series.XValueType == ChartValueType.Date) 2138 else if(base.series.XValueType == ChartValueType.Time) 2275 if(base.series.YValueType == ChartValueType.Date) 2279 else if(base.series.YValueType == ChartValueType.Time) 2286 if(base.series.YValueType == ChartValueType.Date) 2307 else if (base.series.YValueType == ChartValueType.Time) 2482 ChartValueType.Double, 2486 if(this.series.XValueType == ChartValueType.String)
Common\DataManager\DataSeries.cs (33)
200 private ChartValueType _xValueType = ChartValueType.Auto; 201 private ChartValueType _yValueType = ChartValueType.Auto; 242 internal ChartValueType indexedXValueType = ChartValueType.Auto; 855 if(this.YValueType == ChartValueType.Date || 856 this.YValueType == ChartValueType.DateTime || 857 this.YValueType == ChartValueType.Time || 858this.YValueType == ChartValueType.DateTimeOffset) 871 if(this.XValueType == ChartValueType.Date || 872 this.XValueType == ChartValueType.DateTime || 873 this.XValueType == ChartValueType.Time || 874this.XValueType == ChartValueType.DateTimeOffset) 993 internal IEnumerable GetDummyData(ChartValueType type) 1020if(type == ChartValueType.DateTime || type == ChartValueType.Date || type == ChartValueType.DateTimeOffset) 1024 else if(type == ChartValueType.Time) 1029 else if(type == ChartValueType.String) 1208 ChartValueType valueType, 1326 internal string ReplaceOneKeyword(Chart chart, object obj, object objTag, ChartElementType elementType, string strOriginal, string keyword, double value, ChartValueType valueType, string defaultFormat) 1566_xValueType = ChartValueType.Auto; 1571_yValueType = ChartValueType.Auto; 1627 if(this.IsXValueDateTime() || _xValueType == ChartValueType.String) 1676 if(_xValueType == ChartValueType.Auto) 1678 _xValueType = ChartValueType.Double; 1681 if(_yValueType == ChartValueType.Auto) 1683 _yValueType = ChartValueType.Double; 1904 DefaultValue(ChartValueType.Auto), 1909 public ChartValueType XValueType 1955 DefaultValue(ChartValueType.Auto), 1961 public ChartValueType YValueType
Common\General\Axis.cs (17)
4243 else if(series.XValueType == ChartValueType.String || 4244 series.XValueType == ChartValueType.Int32 || 4245 series.XValueType == ChartValueType.UInt32 || 4246 series.XValueType == ChartValueType.UInt64 || 4247 series.XValueType == ChartValueType.Int64 ) 4254 if(series.YValueType == ChartValueType.String || 4255 series.YValueType == ChartValueType.Int32 || 4256 series.YValueType == ChartValueType.UInt32 || 4257 series.YValueType == ChartValueType.UInt64 || 4258 series.YValueType == ChartValueType.Int64 ) 6043 if(GetAxisValuesType() == ChartValueType.DateTime || 6044 GetAxisValuesType() == ChartValueType.Date || 6045 GetAxisValuesType() == ChartValueType.Time || 6046GetAxisValuesType() == ChartValueType.DateTimeOffset) 6061internal ChartValueType GetAxisValuesType() 6063ChartValueType type = ChartValueType.Double;
Common\General\AxisLabels.cs (9)
412 ChartValueType valueType; 426if (valueType != ChartValueType.Time && 427valueType != ChartValueType.Date && 428valueType != ChartValueType.DateTimeOffset) 430 valueType = ChartValueType.DateTime; 580 if( valueType == ChartValueType.DateTime || 581 valueType == ChartValueType.Date || 582 valueType == ChartValueType.Time || 583valueType == ChartValueType.DateTimeOffset ||
Common\General\AxisScale.cs (23)
1369 ChartValueType valuesType) 1382 if( inter <= 1.0 && valuesType != ChartValueType.Date) 1432 else if( inter <= 2.0 && valuesType != ChartValueType.Date) 1437 else if( inter <= 3.0 && valuesType != ChartValueType.Date) 1444 else if( inter <= 10 && valuesType != ChartValueType.Date) 1450 else if( inter <= 20 && valuesType != ChartValueType.Date) 1455 else if( inter <= 60 && valuesType != ChartValueType.Date) 1460 else if( inter <= 120 && valuesType != ChartValueType.Date) 1465 else if( inter <= 180 && valuesType != ChartValueType.Date) 1471 else if( inter <= 60*12 && valuesType != ChartValueType.Date) 1477 else if( inter <= 60*24 && valuesType != ChartValueType.Date) 1483 else if( inter <= 60*24*2 && valuesType != ChartValueType.Date) 1489 else if( inter <= 60*24*3 && valuesType != ChartValueType.Date) 1597 internal ChartValueType GetDateTimeType() 1601 ChartValueType dateType = ChartValueType.Auto; 1610 return ChartValueType.Auto; 1624 return ChartValueType.Auto; 1638 return ChartValueType.Auto; 1652 return ChartValueType.Auto; 2018 ChartValueType dateType = GetDateTimeType(); 2027 else if( dateType != ChartValueType.Auto) 2162 ChartValueType valuesType)
Common\General\AxisScrollZoom.cs (10)
1636ChartValueType axisValuesType, 1643if (axisValuesType == ChartValueType.DateTime || 1644axisValuesType == ChartValueType.Time || 1645axisValuesType == ChartValueType.Date || 1646axisValuesType == ChartValueType.DateTimeOffset) 1667if (axisValuesType == ChartValueType.DateTimeOffset && strValue != null) 1717 if(axis.GetAxisValuesType() == ChartValueType.DateTime || 1718 axis.GetAxisValuesType() == ChartValueType.Date || 1719 axis.GetAxisValuesType() == ChartValueType.Time || 1720axis.GetAxisValuesType() == ChartValueType.DateTimeOffset)
Common\General\Chart.cs (4)
4011private ChartValueType _valueType = ChartValueType.Auto; 4047public ChartValueType ValueType 4088internal FormatNumberEventArgs(double value, string format, ChartValueType valueType, string localizedValue, object senderTag, ChartElementType elementType)
Common\General\ChartAreaAxes.cs (37)
846 if(ser.XValueType != ChartValueType.Int32 && 847 ser.XValueType != ChartValueType.UInt32 && 848 ser.XValueType != ChartValueType.UInt64 && 849 ser.XValueType != ChartValueType.Int64 ) 869 if(ser.XValueType != ChartValueType.Int32 && 870 ser.XValueType != ChartValueType.UInt32 && 871 ser.XValueType != ChartValueType.UInt64 && 872 ser.XValueType != ChartValueType.Int64 ) 892 if(ser.YValueType != ChartValueType.Int32 && 893 ser.YValueType != ChartValueType.UInt32 && 894 ser.YValueType != ChartValueType.UInt64 && 895 ser.YValueType != ChartValueType.Int64 ) 914 if(ser.YValueType != ChartValueType.Int32 && 915 ser.YValueType != ChartValueType.UInt32 && 916 ser.YValueType != ChartValueType.UInt64 && 917 ser.YValueType != ChartValueType.Int64 ) 954 if(ser.XValueType != ChartValueType.Date && 955 ser.XValueType != ChartValueType.DateTime && 956 ser.XValueType != ChartValueType.Time && 957ser.XValueType != ChartValueType.DateTimeOffset) 976 if(ser.XValueType != ChartValueType.Date && 977 ser.XValueType != ChartValueType.DateTime && 978 ser.XValueType != ChartValueType.Time && 979ser.XValueType != ChartValueType.DateTimeOffset) 998 if(ser.YValueType != ChartValueType.Date && 999 ser.YValueType != ChartValueType.DateTime && 1000 ser.YValueType != ChartValueType.Time && 1001ser.YValueType != ChartValueType.DateTimeOffset) 1019 if(ser.YValueType != ChartValueType.Date && 1020 ser.YValueType != ChartValueType.DateTime && 1021 ser.YValueType != ChartValueType.Time && 1022ser.YValueType != ChartValueType.DateTimeOffset) 1090 ChartValueType valueTypes = Common.DataManager.Series[xAxesSeries[0]].XValueType; 1091 if( valueTypes != ChartValueType.Date && 1092valueTypes != ChartValueType.DateTime && 1093valueTypes != ChartValueType.Time && 1094valueTypes != ChartValueType.DateTimeOffset )
Common\General\DataManipulator.cs (13)
958if (zeroXValues && ser.XValueType == ChartValueType.String) 977 else if(ser.XValueType == ChartValueType.String) 992 else if(ser.YValueType == ChartValueType.String) 1028 else if(ser.XValueType == ChartValueType.String) 1047 else if(ser.YValueType == ChartValueType.String) 1223 if(output[seriesIndex].XValueType == ChartValueType.Auto || output[seriesIndex].autoXValueType) 1229 if(output[seriesIndex].YValueType == ChartValueType.Auto || output[seriesIndex].autoYValueType) 1325 if(output[seriesIndex].XValueType == ChartValueType.Auto || output[seriesIndex].autoXValueType) 1331 if(output[seriesIndex].YValueType == ChartValueType.Auto || output[seriesIndex].autoYValueType) 2249 if(output.XValueType == ChartValueType.Auto || output.autoXValueType) 2255 if(output.YValueType == ChartValueType.Auto || output.autoYValueType) 2498 if(output.XValueType == ChartValueType.Auto || output.autoXValueType) 2504 if(output.YValueType == ChartValueType.Auto || output.autoYValueType)
Common\General\FormulaData.cs (2)
875if (outSeries[seriesIndx].XValueType == ChartValueType.Auto) 882if (outSeries[seriesIndx].YValueType == ChartValueType.Auto)
Common\General\GridTickMarks.cs (2)
175 ChartValueType.DateTime ); 1296ChartValueType.DateTime);
Common\General\Label.cs (5)
331ChartValueType valueType = ChartValueType.Double; 334if (this.Axis.GetAxisValuesType() == ChartValueType.DateTimeOffset) 335valueType = ChartValueType.DateTimeOffset; 337valueType = ChartValueType.DateTime;
Common\Utilities\ValueConverter.cs (6)
67 ChartValueType valueType, 107if (valueType == ChartValueType.DateTime || 108valueType == ChartValueType.DateTimeOffset || 109valueType == ChartValueType.Date) 115if (valueType == ChartValueType.DateTimeOffset) 122 else if(valueType == ChartValueType.Time)
Common\Utilities\XmlSerializer.cs (1)
1135else if (typeStr.EndsWith(".SeriesYValueTypeConverter", StringComparison.OrdinalIgnoreCase)) { result = new SeriesYValueTypeConverter(typeof(ChartValueType)); }