Patch for TeeFuncEdit implemented wrongly
Posted: Wed Jan 27, 2010 10:23 am
Hi
Some time ago I reported series sources being empty if the chart was on a frame etecetera, and provided a patch. Which even made it to the "real" sources...
Unfortunatley a little thingy went wrong at steema
Check TeefuncEdit.AddMDISources there is this line which allows adding sources from frames
The IFNDEF should be IFDEF for correct compiling on D3 and earlier, and moreover if you have D4 or later, to have the source series visible. I fixed it in my code for now..
regards - Hans
Some time ago I reported series sources being empty if the chart was on a frame etecetera, and provided a patch. Which even made it to the "real" sources...
Unfortunatley a little thingy went wrong at steema
Check TeefuncEdit.AddMDISources there is this line which allows adding sources from frames
Code: Select all
if (Components[t] is TCustomChart)
{$IFNDEF D4}or (Components[t] is TCustomFrame){$ENDIF} then
regards - Hans