I tried to compile file FMXTee.Import.pas from TeeChart 9 for XE10 Seattle using XE10.1 Berlin and get error : [dcc32 Error] FMXTee.Import.pas(894): E2003 Undeclared identifier: 'Grid' at the following syntax (in file FMXTee.Import.pas) :
result := .....
{$IFDEF FMX}
(AComponent is TImageControl) or
((AComponent is TColumn) and (TColumnAccess(AComponent).Grid<>nil) and (TColumnAccess(AComponent).Grid is TStringGrid)) or
(AComponent is TTextControl)
{$ELSE}
(AComponent is TControl)
{$ENDIF};
I think because file FMX.Grid.pas from XE10 Seattle packages totally different to FMX.Grid.pas from X10.1 Berlin packages that I don't found Grid property of TColumnAccess class.
Now, how to fix this error ? Please help me. Thanks a lot.