hi
i want to skin a TChart.
i saw this code in the tricks forum:
if not FBackgroundCopied then
begin
SendAMessage(self.Parent.Handle, AC_GETCACHE);
if GlobalCacheInfo.Ready then
begin
Chart1.BackImage.Bitmap.Assign(GlobalCacheInfo.Bmp);
Chart1.BackImage.Bitmap.FreeImage;
FBackgroundCopied := True;
end
end
but it doesnt seem to work. i took AC_GETCACHE from sMessages unit but i cant find GlobalCacheInfo anywhere (except one commented line)
is there a (better) way to skin TChart with version 6.35?
thanks