Hi,
I want to print all the data in the grid, so I do:
myGrid.Print("MyData", true);
The columns are shown in the printing from left to right, even in the screen they are shown from Right To Left.
What can i do?
this is definitely a bug. But there is a simple workaround: add an implicit style on DataGridControl at the Application level. e.g.: App.xaml that sets the FlowDirection property to RightToLeft.
The reason for this is that when we print the DataGridControl, we create a copy of the grid in the VisualTree of the application to be able to realize items and print them correctly. Since the property is not correctly affected on that grid, the implicit style will take care of it.