11 writes to XValueType
System.Web.DataVisualization (11)
Common\DataManager\DataPoint.cs (4)
1059
this.series.
XValueType
= ChartValueType.DateTime;
1063
this.series.
XValueType
= ChartValueType.DateTimeOffset;
1067
this.series.
XValueType
= ChartValueType.String;
1327
series.
XValueType
= GetValueType(xEnumerator, xField);
Common\General\Chart.cs (1)
1204
series.
XValueType
= ((Series)seriesList[0]).XValueType;
Common\General\DataManipulator.cs (4)
1225
output[seriesIndex].
XValueType
= inputSeries[seriesIndex].XValueType;
1327
output[seriesIndex].
XValueType
= inputSeries[seriesIndex].XValueType;
2251
output.
XValueType
= input.XValueType;
2500
output.
XValueType
= input.XValueType;
Common\General\FormulaData.cs (2)
350
outSeriesItem.
XValueType
= inSeries[0].XValueType;
877
outSeries[seriesIndx].
XValueType
= inSeries[seriesIndx].XValueType;
73 references to XValueType
System.Web.DataVisualization (73)
Common\ChartTypes\BarChart.cs (4)
430
(ser.
XValueType
== ChartValueType.Date ||
431
ser.
XValueType
== ChartValueType.DateTime ||
432
ser.
XValueType
== ChartValueType.Time ||
433
ser.
XValueType
== ChartValueType.DateTimeOffset))
Common\ChartTypes\ColumnChart.cs (4)
344
(ser.
XValueType
== ChartValueType.Date ||
345
ser.
XValueType
== ChartValueType.DateTime ||
346
ser.
XValueType
== ChartValueType.Time ||
347
ser.
XValueType
== ChartValueType.DateTimeOffset))
Common\ChartTypes\KagiChart.cs (1)
197
xAxis.interval = xAxis.CalcInterval(minX, maxX, true, out intervalType, series.
XValueType
);
Common\ChartTypes\PointAndFigureChart.cs (1)
221
xAxis.interval = xAxis.CalcInterval(minX, maxX, true, out intervalType, series.
XValueType
);
Common\ChartTypes\RenkoChart.cs (1)
202
xAxis.interval = xAxis.CalcInterval(minX, maxX, true, out intervalType, series.
XValueType
);
Common\ChartTypes\StackedBarChart.cs (4)
696
(ser.
XValueType
== ChartValueType.Date ||
697
ser.
XValueType
== ChartValueType.DateTime ||
698
ser.
XValueType
== ChartValueType.Time ||
699
ser.
XValueType
== ChartValueType.DateTimeOffset))
Common\ChartTypes\StackedColumnChart.cs (4)
706
(ser.
XValueType
== ChartValueType.Date ||
707
ser.
XValueType
== ChartValueType.DateTime ||
708
ser.
XValueType
== ChartValueType.Time ||
709
ser.
XValueType
== ChartValueType.DateTimeOffset))
Common\ChartTypes\ThreeLineBreakChart.cs (1)
203
xAxis.interval = xAxis.CalcInterval(minX, maxX, true, out intervalType, series.
XValueType
);
Common\DataManager\DataPoint.cs (7)
1055
if(this.series.
XValueType
== ChartValueType.Auto)
1325
if(series.
XValueType
== ChartValueType.Auto)
1328
if(series.
XValueType
!= ChartValueType.Auto)
2126
if(base.series.
XValueType
== ChartValueType.Date)
2138
else if(base.series.
XValueType
== ChartValueType.Time)
2486
if(this.series.
XValueType
== ChartValueType.String)
2500
this.series.
XValueType
,
Common\DataManager\DataSeries.cs (4)
871
if(this.
XValueType
== ChartValueType.Date ||
872
this.
XValueType
== ChartValueType.DateTime ||
873
this.
XValueType
== ChartValueType.Time ||
874
this.
XValueType
== ChartValueType.DateTimeOffset)
Common\General\Axis.cs (6)
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 )
6119
type = series.
XValueType
;
Common\General\AxisLabels.cs (1)
917
series.
XValueType
,
Common\General\AxisScale.cs (2)
1615
dateType = Common.DataManager.Series[list[0]].
XValueType
;
1629
dateType = Common.DataManager.Series[list[0]].
XValueType
;
Common\General\Chart.cs (1)
1204
series.XValueType = ((Series)seriesList[0]).
XValueType
;
Common\General\ChartAreaAxes.cs (17)
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 )
954
if(ser.
XValueType
!= ChartValueType.Date &&
955
ser.
XValueType
!= ChartValueType.DateTime &&
956
ser.
XValueType
!= ChartValueType.Time &&
957
ser.
XValueType
!= ChartValueType.DateTimeOffset)
976
if(ser.
XValueType
!= ChartValueType.Date &&
977
ser.
XValueType
!= ChartValueType.DateTime &&
978
ser.
XValueType
!= ChartValueType.Time &&
979
ser.
XValueType
!= ChartValueType.DateTimeOffset)
1090
ChartValueType valueTypes = Common.DataManager.Series[xAxesSeries[0]].
XValueType
;
Common\General\DataManipulator.cs (11)
958
if (zeroXValues && ser.
XValueType
== ChartValueType.String)
977
else if(ser.
XValueType
== ChartValueType.String)
1028
else if(ser.
XValueType
== ChartValueType.String)
1223
if(output[seriesIndex].
XValueType
== ChartValueType.Auto || output[seriesIndex].autoXValueType)
1225
output[seriesIndex].XValueType = inputSeries[seriesIndex].
XValueType
;
1325
if(output[seriesIndex].
XValueType
== ChartValueType.Auto || output[seriesIndex].autoXValueType)
1327
output[seriesIndex].XValueType = inputSeries[seriesIndex].
XValueType
;
2249
if(output.
XValueType
== ChartValueType.Auto || output.autoXValueType)
2251
output.XValueType = input.
XValueType
;
2498
if(output.
XValueType
== ChartValueType.Auto || output.autoXValueType)
2500
output.XValueType = input.
XValueType
;
Common\General\FormulaData.cs (3)
350
outSeriesItem.XValueType = inSeries[0].
XValueType
;
875
if (outSeries[seriesIndx].
XValueType
== ChartValueType.Auto)
877
outSeries[seriesIndx].XValueType = inSeries[seriesIndx].
XValueType
;
Common\General\Legend.cs (1)
2196
point.series.
XValueType
,