Xceed Chart for WinForms v4.4 Documentation
AutomaticQualityScale Property
Example 


Xceed.Chart.v4.4 Assembly > Xceed.Chart Namespace > PrintManager Class : AutomaticQualityScale Property
Whether or not the control will automatically determine the quality scaling.
Syntax
'Declaration
 
Public Property AutomaticQualityScale As Boolean
'Usage
 
Dim instance As PrintManager
Dim value As Boolean
 
instance.AutomaticQualityScale = value
 
value = instance.AutomaticQualityScale
public bool AutomaticQualityScale {get; set;}
Remarks
The default value for this property is true meaning that the chart will automatically determine the scale. If you want to manually specify it you must set this property to false and assign some value to the QualityScale property.
Example
The following code instructs the chart to print with quality scaling 5:
ChartControl.PrintManager.AutomaticQualityScale = false;
ChartControl.PrintManager.QualityScale = 5;
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

PrintManager Class
PrintManager Members