HELP! Need to show chart and series on form

;) Hello Admin and users.
I need urgently to show a chart and some series in it on a form
created in a script.
How to do it.
I tried several things with own functions, but no success.
What sense does it make to offer the chart access if
no series can be assigned?

Please help urgently!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Comments

  • edited 8:13PM
    Standard fs_ichartrtti.pas does not contain all chart methods and properties. You can use only published properties and some methods (declared in this file) in your scripts. You should add required methods/public properties either to this file or this way:

    with fsGlobalUnit.FindClass('TChartSeries') do
    begin
    AddMethod(...);
    AddProperty(...);
    end

Leave a Comment