Xceed Chart for WinForms v4.4 Documentation
Xceed.Chart.Core.v4.4 Assembly / Xceed.Chart.Core Namespace / AxisRuler Class / PagingMode Property
Example


In This Topic
    PagingMode Property
    In This Topic
    Controls the paging mode of the axis.
    Syntax
    'Declaration
     
    <CategoryAttribute("Paging")>
    <DescriptionAttribute("Controls the paging mode of the axis")>
    <DefaultValueAttribute(Mono.Cecil.CustomAttributeArgument)>
    Public Property PagingMode As RulerPagingMode
    'Usage
     
    Dim instance As AxisRuler
    Dim value As RulerPagingMode
     
    instance.PagingMode = value
     
    value = instance.PagingMode
    [Category("Paging")]
    [Description("Controls the paging mode of the axis")]
    [DefaultValue(Mono.Cecil.CustomAttributeArgument)]
    public RulerPagingMode PagingMode {get; set;}
    Remarks
    When set to None the ruler is not paged.

    When set to FixedPageSize each axis page has the size specified by the PageSize property.

    When set to FixedPageCount the axis has exactly PageCount pages.

    Example
    Display the ruler of the PrimaryX axis in 5 pages.
    Chart.Axis(PrimaryX).Ruler.PagingMode = RulerPagingMode.FixedPageCount
    Chart.Axis(PrimaryX).Ruler.PageCount = 5
    Chart.Axis(PrimaryX).Ruler.PagingMode = RulerPagingMode.FixedPageCount;
    Chart.Axis(PrimaryX).Ruler.PageCount = 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