6 instantiations of CustomLabel
System.Web.DataVisualization (6)
Common\General\Label.cs (6)
192
CustomLabel label = new
CustomLabel
(fromPosition, toPosition, text, 0, LabelMarkStyle.None);
207
CustomLabel label = new
CustomLabel
(fromPosition, toPosition, text, 0, LabelMarkStyle.None);
224
CustomLabel label = new
CustomLabel
(fromPosition, toPosition, text, rowIndex, markStyle);
241
CustomLabel label = new
CustomLabel
(fromPosition, toPosition, text, rowIndex, markStyle, gridTick);
349
CustomLabel label = new
CustomLabel
(labelStart, labelEnd, text, rowIndex, markStyle);
532
CustomLabel newLabel = new
CustomLabel
();
49 references to CustomLabel
System.Web.DataVisualization (49)
Common\General\Axis.cs (17)
3183
foreach (
CustomLabel
label in CustomLabels)
3275
foreach (
CustomLabel
label in tempLabels)
3808
foreach (
CustomLabel
label in this.CustomLabels)
3826
foreach (
CustomLabel
label in originalLabels)
4095
foreach(
CustomLabel
label in removedLabels)
4181
foreach(
CustomLabel
label in this.CustomLabels)
4220
foreach(
CustomLabel
label in this.tempLabels )
4324
foreach(
CustomLabel
label in this.CustomLabels)
4344
foreach(
CustomLabel
label in lastFitLabels)
4388
foreach(
CustomLabel
label in this.tempLabels )
4659
foreach (
CustomLabel
label in labels)
4718
CustomLabel
label = labels[longestLabelIndex];
5282
foreach (
CustomLabel
label in this.CustomLabels)
5375
foreach (
CustomLabel
label in this.CustomLabels)
5644
foreach (
CustomLabel
label in this.CustomLabels)
5887
foreach (
CustomLabel
label in this.CustomLabels)
5923
foreach (
CustomLabel
label in this.CustomLabels)
Common\General\AxisLabels.cs (5)
137
foreach(
CustomLabel
label in this.CustomLabels)
158
foreach(
CustomLabel
label in this.CustomLabels)
236
foreach (
CustomLabel
label in this.CustomLabels)
262
foreach (
CustomLabel
label in this.GetOtherTypeAxis().CustomLabels)
304
foreach(
CustomLabel
lab in CustomLabels )
Common\General\ChartGraphics.cs (1)
1773
CustomLabel
label,
Common\General\GridTickMarks.cs (2)
711
foreach (
CustomLabel
label in Axis.CustomLabels)
1560
foreach(
CustomLabel
label in _axis.CustomLabels)
Common\General\Label.cs (14)
160
public class CustomLabelsCollection : ChartElementCollection<
CustomLabel
>
190
public
CustomLabel
Add(double fromPosition, double toPosition, string text)
192
CustomLabel
label = new CustomLabel(fromPosition, toPosition, text, 0, LabelMarkStyle.None);
205
internal
CustomLabel
Add(double fromPosition, double toPosition, string text, bool customLabel)
207
CustomLabel
label = new CustomLabel(fromPosition, toPosition, text, 0, LabelMarkStyle.None);
222
public
CustomLabel
Add(double fromPosition, double toPosition, string text, int rowIndex, LabelMarkStyle markStyle)
224
CustomLabel
label = new CustomLabel(fromPosition, toPosition, text, rowIndex, markStyle);
239
public
CustomLabel
Add(double fromPosition, double toPosition, string text, int rowIndex, LabelMarkStyle markStyle, GridTickTypes gridTick)
241
CustomLabel
label = new CustomLabel(fromPosition, toPosition, text, rowIndex, markStyle, gridTick);
349
CustomLabel
label = new CustomLabel(labelStart, labelEnd, text, rowIndex, markStyle);
530
public
CustomLabel
Clone()
532
CustomLabel
newLabel = new CustomLabel();
1474
foreach (
CustomLabel
label in this._axis.CustomLabels)
2071
foreach (
CustomLabel
label in this._axis.CustomLabels)
Common\General\Selection.cs (10)
2400
if (obj is
CustomLabel
)
2402
CustomLabel
label = (
CustomLabel
)obj;
2408
if (obj is
CustomLabel
)
2410
CustomLabel
label = (
CustomLabel
)obj;
2654
CustomLabel
label1 = cntxObj as
CustomLabel
;
2655
CustomLabel
label2 = rgn.SelectedObject as
CustomLabel
;