Reputation: 802
i am using crystal reports with visual studio 2013. i used cross tab report to show data, the problem is i have data in URDU language which starts from right to left but when i put data in cross tab it increases from left to right and i want cross tab should increase its length from right to left. i tried but did not find any way to do it. so how can i achieve this . i want this
Upvotes: 0
Views: 4232
Reputation: 1
you can loop against report object and change location of it Example :
private void SetLocationOfLineObject(ReportObject fild)
{
fild.Left = rptAcc1.PrintOptions.PageContentWidth - (fild.Left );
}
Upvotes: 0
Reputation: 9101
you can do It by right click and format and then selecting right to left instead of left to right.
Upvotes: 4