Hi there! I'm generating a cross-tab report from a ClienDataSet(Delphi7) and i don't know how to manipulate the width of the row header. It seem that the width sets automaticly. Ok, thnx
procedure Cross1OnCalcWidth(ColumnIndex: Integer; ColumnValues: Variant; var Width: Extended);
begin
 if ColumnIndex = 1 then
 Width:= 100
 else
 Width:=150;  Â
end;
That's a script for manipulation of the cell width(ColumnIndex=0-first column,1-second collumn etc)..What i need is something that will change the width of the Row header, not a cell...i can't access the row header withe the script above
Comments
That's a script for manipulation of the cell width(ColumnIndex=0-first column,1-second collumn etc)..What i need is something that will change the width of the Row header, not a cell...i can't access the row header withe the script above
With MAxWidth one can fix the width of the row header