Xceed Chart for WinForms v4.4 Documentation
PagingMode Property
Example 


Xceed.Chart.Core.v4.4 Assembly > Xceed.Chart.Core Namespace > AxisRuler Class : PagingMode Property
Controls the paging mode of the axis.
Syntax
'Declaration
 
<DefaultValueAttribute()>
<CategoryAttribute("Paging")>
<DescriptionAttribute("Controls the paging mode of the axis")>
Public Property PagingMode As RulerPagingMode
'Usage
 
Dim instance As AxisRuler
Dim value As RulerPagingMode
 
instance.PagingMode = value
 
value = instance.PagingMode
[DefaultValue()]
[Category("Paging")]
[Description("Controls the paging mode of the axis")]
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

Reference

AxisRuler Class
AxisRuler Members