Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.v4.4 Assembly / Xceed.Chart Namespace / PrintManager Class / QualityScale Property
Example


In This Topic
    QualityScale Property
    In This Topic
    Specifies an internal scaling to be applied when printing.
    Syntax
    'Declaration
     
    Public Property QualityScale As Single
    'Usage
     
    Dim instance As PrintManager
    Dim value As Single
     
    instance.QualityScale = value
     
    value = instance.QualityScale
    public float QualityScale {get; set;}
    Remarks
    When the AutomaticQualityScale property is set to true the control will discard this property and calculate the quality scale automatically depending on printer dots per inch resolution.
    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