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)
3090else if (this.LabelStyle.Enabled && this.LabelStyle.GetInterval() != 0.0) 3093stripLine.Interval = this.LabelStyle.GetInterval() * 2.0; 3094stripLine.IntervalType = this.LabelStyle.GetIntervalType(); 3095stripLine.IntervalOffset = this.LabelStyle.GetIntervalOffset(); 3096stripLine.IntervalOffsetType = this.LabelStyle.GetIntervalOffsetType(); 3097stripLine.StripWidth = this.LabelStyle.GetInterval(); 3098stripLine.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; 3731autoLabelFont = Common.Chart.chartPicture.FontCache.GetFont(this.LabelStyle.Font.FontFamily, 3733this.LabelStyle.Font.Style, 3741autoLabelFont = this.LabelStyle.Font; 3973if (this.LabelStyle.Enabled) 4004if (!this.LabelStyle.Enabled) 4754!this.LabelStyle.Enabled) 4764this.LabelStyle.Font.FontFamily, 4766this.LabelStyle.Font.Style, 4773this.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; 5080autoLabelFont = this.LabelStyle.Font; 5630float angle = (autoLabelAngle < -90) ? this.LabelStyle.Angle : autoLabelAngle; 5668if ((autoLabelOffset == -1) ? this.LabelStyle.IsStaggered : (autoLabelOffset == 1)) 5702(autoLabelFont != null) ? autoLabelFont : this.LabelStyle.Font, 5713(autoLabelFont != null) ? autoLabelFont : this.LabelStyle.Font, 5838if ((autoLabelOffset == -1) ? this.LabelStyle.IsStaggered : (autoLabelOffset == 1)) 5938SizeF 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) 2596this.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)
1131if (!_axis.LabelStyle.Enabled) 1370if (!_axis.LabelStyle.Enabled) 1548currentPosition += ChartHelper.GetIntervalSize(currentPosition, _axis.LabelStyle.GetInterval(), _axis.LabelStyle.GetIntervalType(),