31 references to Secondary
System.Web.DataVisualization (31)
Common\General\Axis.cs (2)
6085
else if (this.axisType == AxisName.X2 && series.XAxisType == AxisType.
Secondary
)
6103
else if (this.axisType == AxisName.Y2 && series.YAxisType == AxisType.
Secondary
)
Common\General\AxisLabels.cs (6)
182
return AxisType.
Secondary
;
224
this.GetAxisType() == AxisType.Primary ? AxisType.
Secondary
: AxisType.Primary,
348
dataSeries = ChartArea.GetXAxesSeries( AxisType.
Secondary
, ((Axis)this).SubAxisName );
351
dataSeries = ChartArea.GetYAxesSeries( AxisType.
Secondary
, ((Axis)this).SubAxisName );
542
List<string> seriesArray = ChartArea.GetXAxesSeries((axisType == AxisName.X) ? AxisType.Primary : AxisType.
Secondary
, ((Axis)this).SubAxisName);
888
if( !(( axisType == AxisName.X && series.XAxisType == AxisType.Primary ) || ( axisType == AxisName.X2 && series.XAxisType == AxisType.
Secondary
)) )
Common\General\AxisScale.cs (4)
1621
list = ChartArea.GetXAxesSeries( AxisType.
Secondary
, ((Axis)this).SubAxisName );
1649
list = ChartArea.GetYAxesSeries( AxisType.
Secondary
, ((Axis)this).SubAxisName );
1767
list = ChartArea.GetXAxesSeries( AxisType.
Secondary
, ((Axis)this).SubAxisName );
1791
list = ChartArea.GetYAxesSeries( AxisType.
Secondary
, ((Axis)this).SubAxisName );
Common\General\AxisScaleBreaks.cs (1)
506
if( (axis.axisType == AxisName.Y && series.YAxisType == AxisType.
Secondary
) ||
Common\General\ChartArea3D.cs (2)
879
if(firstSeries != null && firstSeries.XAxisType == AxisType.
Secondary
)
927
if(smallestIntervalSeries != null && smallestIntervalSeries.XAxisType == AxisType.
Secondary
)
Common\General\ChartAreaAxes.cs (12)
266
SetDefaultFromIndexesOrData(axisX2, AxisType.
Secondary
);
307
if( GetYAxesSeries( AxisType.
Secondary
, string.Empty ).Count != 0 )
865
if ( ser.XAxisType == AxisType.
Secondary
)
910
if ( ser.YAxisType == AxisType.
Secondary
)
973
if ( ser.XAxisType == AxisType.
Secondary
)
1016
if ( ser.YAxisType == AxisType.
Secondary
)
1061
type = AxisType.
Secondary
;
1305
type = AxisType.
Secondary
;
1482
List<string> seriesArray = this.GetXAxesSeries((axisIndex == 0) ? AxisType.Primary : AxisType.
Secondary
, string.Empty);
1609
if (type == AxisType.
Secondary
)
1613
return GetXAxesSeries(AxisType.
Secondary
, string.Empty);
1675
if ( list.Count == 0 && type == AxisType.
Secondary
)
Common\General\GridTickMarks.cs (2)
198
List<string> seriesArray = Axis.ChartArea.GetXAxesSeries((Axis.axisType == AxisName.X) ? AxisType.Primary : AxisType.
Secondary
, Axis.SubAxisName);
1259
List<string> seriesArray = _axis.ChartArea.GetXAxesSeries((_axis.axisType == AxisName.X) ? AxisType.Primary : AxisType.
Secondary
, _axis.SubAxisName);
Common\General\Label.cs (1)
1527
List<string> seriesArray = _axis.ChartArea.GetXAxesSeries((_axis.axisType == AxisName.X) ? AxisType.Primary : AxisType.
Secondary
, _axis.SubAxisName);
Common\General\StripLine.cs (1)
270
List<string> seriesArray = Axis.ChartArea.GetXAxesSeries((Axis.axisType == AxisName.X) ? AxisType.Primary : AxisType.
Secondary
, Axis.SubAxisName);