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); 349CustomLabel 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)
3183foreach (CustomLabel label in CustomLabels) 3275foreach (CustomLabel label in tempLabels) 3808foreach (CustomLabel label in this.CustomLabels) 3826foreach (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 ) 4659foreach (CustomLabel label in labels) 4718CustomLabel label = labels[longestLabelIndex]; 5282foreach (CustomLabel label in this.CustomLabels) 5375foreach (CustomLabel label in this.CustomLabels) 5644foreach (CustomLabel label in this.CustomLabels) 5887foreach (CustomLabel label in this.CustomLabels) 5923foreach (CustomLabel label in this.CustomLabels)
Common\General\AxisLabels.cs (5)
137 foreach(CustomLabel label in this.CustomLabels) 158 foreach(CustomLabel label in this.CustomLabels) 236foreach (CustomLabel label in this.CustomLabels) 262foreach (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)
711foreach (CustomLabel label in Axis.CustomLabels) 1560 foreach(CustomLabel label in _axis.CustomLabels)
Common\General\Label.cs (14)
160public class CustomLabelsCollection : ChartElementCollection<CustomLabel> 190public 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); 349CustomLabel label = new CustomLabel(labelStart, labelEnd, text, rowIndex, markStyle); 530 public CustomLabel Clone() 532 CustomLabel newLabel = new CustomLabel(); 1474foreach (CustomLabel label in this._axis.CustomLabels) 2071foreach (CustomLabel label in this._axis.CustomLabels)
Common\General\Selection.cs (10)
2400if (obj is CustomLabel) 2402CustomLabel label = (CustomLabel)obj; 2408if (obj is CustomLabel) 2410CustomLabel label = (CustomLabel)obj; 2654CustomLabel label1 = cntxObj as CustomLabel; 2655CustomLabel label2 = rgn.SelectedObject as CustomLabel;