1 override of AxisLabel
System.Web.DataVisualization (1)
Common\DataManager\DataSeries.cs (1)
2537
override public string
AxisLabel
9 writes to AxisLabel
System.Web.DataVisualization (9)
Common\ChartTypes\PointAndFigureChart.cs (1)
770
emptyPoint.
AxisLabel
= " ";
Common\DataManager\DataPoint.cs (2)
1970
this.
AxisLabel
= stringValue;
2112
AxisLabel
= (string)xValue;
Common\DataManager\DataSeries.cs (1)
2545
base.
AxisLabel
= value;
Common\General\Chart.cs (1)
1070
newPoint.
AxisLabel
= (string)axisLabels[index];
Common\General\DataManipulator.cs (2)
2271
dp.
AxisLabel
= point.AxisLabel;
2387
newPoint.
AxisLabel
= currentLabel;
Common\General\FormulaData.cs (2)
464
outputSeries.Points[outIndex].
AxisLabel
= inputPoint.AxisLabel;
474
outputPoint.
AxisLabel
= inputPoint.AxisLabel;
31 references to AxisLabel
System.Web.DataVisualization (31)
Common\ChartTypes\PieChart.cs (1)
5619
pointLabel = point.
AxisLabel
;
Common\DataManager\DataPoint.cs (5)
230
result = string.Compare(x.
AxisLabel
, y.
AxisLabel
, StringComparison.CurrentCulture);
301
if(dataPoint.
AxisLabel
.Length > 0 && series != null)
2460
result = result.Replace(KeywordName.AxisLabel, this.
AxisLabel
);
2488
result = result.Replace(KeywordName.ValX, this.
AxisLabel
);
Common\DataManager\DataSeries.cs (1)
2541
return base.
AxisLabel
;
Common\General\AxisLabels.cs (7)
515
if( dataPoint.
AxisLabel
.Length > 0 )
517
CustomLabels[pointIndx].Text = dataPoint.
AxisLabel
;
820
if( ser.Points[ 0 ].
AxisLabel
.Length > 0 && ser.Points[ ser.Points.Count - 1 ].
AxisLabel
.Length > 0 )
909
if(point.
AxisLabel
.Length == 0 && nonZeroXValues)
922
return point.ReplaceKeywords(point.
AxisLabel
);
931
return point.ReplaceKeywords(point.
AxisLabel
);
Common\General\Chart.cs (6)
1005
if(point.
AxisLabel
.Length == 0)
1010
else if(seriesAxisLabels.Contains(point.
AxisLabel
))
1015
else if(!axisLabels.Contains(point.
AxisLabel
))
1017
axisLabels.Add(point.
AxisLabel
);
1020
seriesAxisLabels.Add(point.
AxisLabel
);
1053
point.XValue = axisLabels.IndexOf(point.
AxisLabel
) + 1;
Common\General\ChartArea.cs (2)
2919
if(series.Points[sectorIndex].
AxisLabel
.Length > 0)
2921
axis.Title = series.Points[sectorIndex].
AxisLabel
;
Common\General\DataManipulator.cs (5)
1030
xValue = point.
AxisLabel
;
1049
yValue = point.
AxisLabel
;
2271
dp.AxisLabel = point.
AxisLabel
;
2331
currentLabel = input.Points[pointIndex].
AxisLabel
;
2337
if(!endOfInterval && input.Points[pointIndex].
AxisLabel
!= currentLabel)
Common\General\FormulaData.cs (3)
458
if (!String.IsNullOrEmpty(inputPoint.
AxisLabel
))
464
outputSeries.Points[outIndex].AxisLabel = inputPoint.
AxisLabel
;
474
outputPoint.AxisLabel = inputPoint.
AxisLabel
;
Common\General\Legend.cs (1)
2184
item.Name = point.ReplaceKeywords((point.Label.Length > 0) ? point.Label : point.
AxisLabel
);