69 references to LabelStyle
System.Windows.Forms.DataVisualization (69)
Common\ChartTypes\PolarChart.cs (2)
149
if(area.AxisX.
LabelStyle
.GetInterval() > 0)
151
interval = area.AxisX.
LabelStyle
.GetInterval();
Common\General\Axis.cs (38)
3090
else if (this.
LabelStyle
.Enabled && this.
LabelStyle
.GetInterval() != 0.0)
3093
stripLine.Interval = this.
LabelStyle
.GetInterval() * 2.0;
3094
stripLine.IntervalType = this.
LabelStyle
.GetIntervalType();
3095
stripLine.IntervalOffset = this.
LabelStyle
.GetIntervalOffset();
3096
stripLine.IntervalOffsetType = this.
LabelStyle
.GetIntervalOffsetType();
3097
stripLine.StripWidth = this.
LabelStyle
.GetInterval();
3098
stripLine.StripWidthType = this.
LabelStyle
.GetIntervalType();
3655
this.
LabelStyle
.Enabled &&
3662
(this.
LabelStyle
.Angle == 90 || this.
LabelStyle
.Angle == -90) )
3667
(this.
LabelStyle
.Angle == 180 || this.
LabelStyle
.Angle == 0) )
3678
this.autoLabelFont = Common.Chart.chartPicture.FontCache.GetFont(this.
LabelStyle
.Font.FontFamily,
3679
this.
LabelStyle
.Font.Size + extraSize,
3680
this.
LabelStyle
.Font.Style,
3684
this.autoLabelAngle = this.
LabelStyle
.Angle;
3685
this.autoLabelOffset = (this.
LabelStyle
.IsStaggered) ? 1 : 0;
3731
autoLabelFont = Common.Chart.chartPicture.FontCache.GetFont(this.
LabelStyle
.Font.FontFamily,
3733
this.
LabelStyle
.Font.Style,
3741
autoLabelFont = this.
LabelStyle
.Font;
3973
if (this.
LabelStyle
.Enabled)
4004
if (!this.
LabelStyle
.Enabled)
4754
!this.
LabelStyle
.Enabled)
4764
this.
LabelStyle
.Font.FontFamily,
4766
this.
LabelStyle
.Font.Style,
4773
this.autoLabelFont = this.
LabelStyle
.Font;
5025
this.
LabelStyle
.Enabled &&
5031
this.autoLabelFont = this.
LabelStyle
.Font;
5037
this.autoLabelAngle = this.
LabelStyle
.Angle;
5041
this.autoLabelOffset = (this.
LabelStyle
.IsStaggered) ? 1 : 0;
5080
autoLabelFont = this.
LabelStyle
.Font;
5630
float angle = (autoLabelAngle < -90) ? this.
LabelStyle
.Angle : autoLabelAngle;
5668
if ((autoLabelOffset == -1) ? this.
LabelStyle
.IsStaggered : (autoLabelOffset == 1))
5702
(autoLabelFont != null) ? autoLabelFont : this.
LabelStyle
.Font,
5713
(autoLabelFont != null) ? autoLabelFont : this.
LabelStyle
.Font,
5838
if ((autoLabelOffset == -1) ? this.
LabelStyle
.IsStaggered : (autoLabelOffset == 1))
5938
SizeF axisLabelSize = chartGraph.MeasureStringRel(label.Text.Replace("\\n", "\n"), (autoLabelFont != null) ? autoLabelFont : this.
LabelStyle
.Font);
Common\General\AxisLabels.cs (8)
246
!this.
LabelStyle
.Enabled ||
284
if( !this.
LabelStyle
.Enabled || !this.enabled )
457
this.
LabelStyle
.Format,
472
this.
LabelStyle
.Format,
488
this.
LabelStyle
.Format,
663
this.
LabelStyle
.Format,
765
this.
LabelStyle
.Format,
916
this.
LabelStyle
.Format,
Common\General\AxisScaleSegments.cs (12)
764
_oldAxisSettings.Push(this.axis.
LabelStyle
.interval);
765
_oldAxisSettings.Push(this.axis.
LabelStyle
.intervalType);
766
_oldAxisSettings.Push(this.axis.
LabelStyle
.intervalOffset);
767
_oldAxisSettings.Push(this.axis.
LabelStyle
.intervalOffsetType);
784
this.axis.
LabelStyle
.interval = this.Interval;
785
this.axis.
LabelStyle
.intervalType = this.IntervalType;
786
this.axis.
LabelStyle
.intervalOffset = this.IntervalOffset;
787
this.axis.
LabelStyle
.intervalOffsetType = this.IntervalOffsetType;
797
this.axis.
LabelStyle
.intervalOffsetType = (DateTimeIntervalType)_oldAxisSettings.Pop();
798
this.axis.
LabelStyle
.intervalOffset = (double)_oldAxisSettings.Pop();
799
this.axis.
LabelStyle
.intervalType = (DateTimeIntervalType)_oldAxisSettings.Pop();
800
this.axis.
LabelStyle
.interval = (double)_oldAxisSettings.Pop();
Common\General\ChartArea.cs (5)
2568
if(!this.AxisX.
LabelStyle
.Enabled)
2592
if(this.AxisX.
LabelStyle
.Enabled && this.AxisX.IsLabelAutoFit)
2596
this.AxisX.
LabelStyle
.Font.FontFamily,
2598
this.AxisX.
LabelStyle
.Font.Style,
2691
(this.AxisX.autoLabelFont == null) ? this.AxisX.
LabelStyle
.Font : this.AxisX.autoLabelFont);
Common\General\Label.cs (4)
1131
if (!_axis.
LabelStyle
.Enabled)
1370
if (!_axis.
LabelStyle
.Enabled)
1548
currentPosition += ChartHelper.GetIntervalSize(currentPosition, _axis.
LabelStyle
.GetInterval(), _axis.
LabelStyle
.GetIntervalType(),