11 writes to YValueType
System.Web.DataVisualization (11)
Common\DataManager\DataPoint.cs (5)
1007
this.series.
YValueType
= ChartValueType.DateTime;
1012
this.series.
YValueType
= ChartValueType.DateTimeOffset;
1079
this.series.
YValueType
= ChartValueType.DateTime;
1084
this.series.
YValueType
= ChartValueType.DateTimeOffset;
1335
series.
YValueType
= GetValueType(yEnumerator, yField);
Common\General\Chart.cs (1)
1206
series.
YValueType
= ((Series)seriesList[0]).YValueType;
Common\General\DataManipulator.cs (4)
1231
output[seriesIndex].
YValueType
= inputSeries[seriesIndex].YValueType;
1333
output[seriesIndex].
YValueType
= inputSeries[seriesIndex].YValueType;
2257
output.
YValueType
= input.YValueType;
2506
output.
YValueType
= input.YValueType;
Common\General\FormulaData.cs (1)
884
outSeries[seriesIndx].
YValueType
= inSeries[seriesIndx].YValueType;
77 references to YValueType
System.Web.DataVisualization (77)
Common\ChartTypes\BarChart.cs (2)
851
ser.
YValueType
,
1855
ser.
YValueType
,
Common\ChartTypes\BoxPlotChart.cs (1)
903
ser.
YValueType
,
Common\ChartTypes\ColumnChart.cs (2)
1229
series.
YValueType
,
1342
pointEx.dataPoint.series.
YValueType
,
Common\ChartTypes\ErrorBarChart.cs (1)
960
ser.
YValueType
,
Common\ChartTypes\FunnelChart.cs (1)
1645
point.series.
YValueType
,
Common\ChartTypes\PieChart.cs (2)
1737
point.series.
YValueType
,
5652
point.series.
YValueType
,
Common\ChartTypes\PointChart.cs (1)
690
ser.
YValueType
,
Common\ChartTypes\RadarChart.cs (1)
1062
ser.
YValueType
,
Common\ChartTypes\StackedAreaChart.cs (2)
1014
ser.
YValueType
,
1501
pointEx.dataPoint.series.
YValueType
,
Common\ChartTypes\StackedBarChart.cs (2)
1068
series.
YValueType
,
1835
ser.
YValueType
,
Common\ChartTypes\StackedColumnChart.cs (2)
1148
series.
YValueType
,
1864
series.
YValueType
,
Common\ChartTypes\StockChart.cs (1)
985
ser.
YValueType
,
Common\DataManager\DataPoint.cs (11)
1001
if(this.series.
YValueType
== ChartValueType.Auto &&
1073
if(this.series.
YValueType
== ChartValueType.Auto &&
1333
if(series.
YValueType
== ChartValueType.Auto)
1336
if(series.
YValueType
!= ChartValueType.Auto)
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)
2520
this.series.
YValueType
,
2532
this.series.
YValueType
,
2543
this.series.
YValueType
,
Common\DataManager\DataSeries.cs (10)
855
if(this.
YValueType
== ChartValueType.Date ||
856
this.
YValueType
== ChartValueType.DateTime ||
857
this.
YValueType
== ChartValueType.Time ||
858
this.
YValueType
== ChartValueType.DateTimeOffset)
1116
this.
YValueType
,
1128
this.
YValueType
,
1140
this.
YValueType
,
1152
this.
YValueType
,
1164
this.
YValueType
,
1176
this.
YValueType
,
Common\General\Axis.cs (6)
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 )
6123
type = series.
YValueType
;
Common\General\AxisLabels.cs (1)
420
valueType = Common.DataManager.Series[dataSeries[0]].
YValueType
;
Common\General\AxisScale.cs (2)
1643
dateType = Common.DataManager.Series[list[0]].
YValueType
;
1657
dateType = Common.DataManager.Series[list[0]].
YValueType
;
Common\General\Chart.cs (1)
1206
series.YValueType = ((Series)seriesList[0]).
YValueType
;
Common\General\ChartAreaAxes.cs (16)
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 )
998
if(ser.
YValueType
!= ChartValueType.Date &&
999
ser.
YValueType
!= ChartValueType.DateTime &&
1000
ser.
YValueType
!= ChartValueType.Time &&
1001
ser.
YValueType
!= ChartValueType.DateTimeOffset)
1019
if(ser.
YValueType
!= ChartValueType.Date &&
1020
ser.
YValueType
!= ChartValueType.DateTime &&
1021
ser.
YValueType
!= ChartValueType.Time &&
1022
ser.
YValueType
!= ChartValueType.DateTimeOffset)
Common\General\DataManipulator.cs (10)
992
else if(ser.
YValueType
== ChartValueType.String)
1047
else if(ser.
YValueType
== ChartValueType.String)
1229
if(output[seriesIndex].
YValueType
== ChartValueType.Auto || output[seriesIndex].autoYValueType)
1231
output[seriesIndex].YValueType = inputSeries[seriesIndex].
YValueType
;
1331
if(output[seriesIndex].
YValueType
== ChartValueType.Auto || output[seriesIndex].autoYValueType)
1333
output[seriesIndex].YValueType = inputSeries[seriesIndex].
YValueType
;
2255
if(output.
YValueType
== ChartValueType.Auto || output.autoYValueType)
2257
output.YValueType = input.
YValueType
;
2504
if(output.
YValueType
== ChartValueType.Auto || output.autoYValueType)
2506
output.YValueType = input.
YValueType
;
Common\General\FormulaData.cs (2)
882
if (outSeries[seriesIndx].
YValueType
== ChartValueType.Auto)
884
outSeries[seriesIndx].YValueType = inSeries[seriesIndx].
YValueType
;