CrossView get element on the fly

edited May 2011 in FastReport 4.0
Hello,


Please have a look at the output of a the CrossView: picture
I need to rotate the columns highlighted with red on the fly.

I tried RowMemos,CellMemos ,ColumnMemos ,CornerMemos but it seemed that I can set everything except that I need.

Can somebody help me?

Comments

  • gpigpi
    edited 8:51AM
    Try to use:
    procedure Cross1OnBeforePrint(Sender: TfrxComponent);
    begin
         Cross1Column0.Rotation := 90;                                    
    end;
    
  • edited 8:51AM
    gpi wrote: »
    Try to use:
    procedure Cross1OnBeforePrint(Sender: TfrxComponent);
    begin
         Cross1Column0.Rotation := 90;                                    
    end;
    

    It works! Thank you!

Leave a Comment