Chart properties access via script

I use a chart in FR5 and I want to change some properties by code (script) ie : the column associeted with the serie ...
Is there any doc about the chart properties ?

Comments

  • gordkgordk St.Catherines On. Canada.
    edited 5:12PM
    try designing the chart using 2 series and set which series you want active.
    chart1.Series[0].Active := false;
    chart1.Series[1].Active := true;
    see the usermanual on charts
  • edited 5:12PM
    gordk wrote: »
    try designing the chart using 2 series and set which series you want active.
    chart1.Series[0].Active := false;
    chart1.Series[1].Active := true;
    see the usermanual on charts
    Thx for answer.
    I tried it and have an error (access violation in function : TFunctions.CallMethod).
    In the user manual i see some lines about script entered values, but I would have informations about public properties & methods.
  • gpigpi
    edited 5:12PM
    Attach your report template (fr3) here
  • edited 5:12PM
    gpi wrote: »
    Attach your report template (fr3) here
    done...
  • gpigpi
    edited 5:12PM
    Use Chart1.SeriesData.Items[0].Source1

Leave a Comment