Reputation: 4776
I have a FastReport CrossTab report with long column names, which would expand into multiple pages if I were to print it. I thought maybe I can rotate the column headers in order to save some space. But FastReport does not compute proper Y position for rows, and the generated report looks like this:
Notice the yellow rotated headers, and the overlapping data rows. The first data row is positioned correctly, for the following rows are not. I have set the Rotation
property of the TfrxMemoView
FastReport has generated for column header to 90
. What should I do for the rows to be placed in proper vertical positions?
I'm using FastReport Version 4.12.12
Upvotes: 2
Views: 1962
Reputation: 4776
Problem solved. If the MasterBand
is smaller than the TfrxDBCrossView
inside, FastReport can not calculate the vertical position of rows correctly.
Upvotes: 1