Search found 3 matches

by C-P
Mon Jan 18, 2021 1:58 pm
Forum: VCL
Topic: TDBChart Save design and load back?
Replies: 3
Views: 8937

Re: TDBChart Save design and load back?

Hello, there is no version of this to LOAD from xml. Indeed, that's already in the public tracker #2390 . Once I assign the series datasource manually after loading the .TEE file, then it works. That was also identified time ago here #185 . Oof ok... So the XML report is pretty new. 2020-12-04. The...
by C-P
Mon Jan 18, 2021 5:13 am
Forum: VCL
Topic: TDBChart Save design and load back?
Replies: 3
Views: 8937

Re: TDBChart Save design and load back?

I kinda got this to work via something like this procedure TForm8.Button3Click(Sender: TObject); begin VclTee.Teestore.LoadChartFromFile(DBChart1, 'gadget1.tee'); if DBChart1.SeriesCount = 1 then DBChart1.Series[0].DataSource := q_Gadget; /// <--- TADOQuery object, once assigned, boom it works. end;...
by C-P
Mon Jan 18, 2021 4:13 am
Forum: VCL
Topic: TDBChart Save design and load back?
Replies: 3
Views: 8937

TDBChart Save design and load back?

Working on a user configurable "dashboard" system. Idea is to allow them to design their query, run it, then design a TDBChart to hook into that and design their chart. Also I have it so they can design a grid view design and some other stuff for this "dashboard" system. I have VCLTee.TeeEditPro, VC...