Having trouble getting help?
Contact Support
Contact Support
Right to Left Support in Windows Forms Pivot Grid
21 Jan 20251 minute to read
The elements of pivot grid control can be aligned in right-to-left (RTL) layout. This support is useful when the pivot grid control is localized in Middle Eastern languages, such as Hebrew and Arabic, which are written predominantly from right to left.
Enabling RTL mode
Th elements of pivot grid control can be laid out from right to left by setting the RightToLeft property to Yes
. Refer to the below code sample to align the pivot grid control in right to left order.
this.pivotGridControl1.RightToLeft = RightToLeft.Yes;
Me.pivotGridControl1.RightToLeft = RightToLeft.Yes