Search found 7 matches

by superviper
Sat May 13, 2017 3:04 pm
Forum: VCL
Topic: Multiple .tee plots on one Chart
Replies: 6
Views: 10503

Re: Multiple .tee plots on one Chart

Thank you for really clear and fruitfull answer. In my case each .tee file have 5 series. Fifth series is dedicated for custom axis. I have finally realize code like this. I hope above support will be helpfull also for others. Please remember once you will find any problem and find solution please g...
by superviper
Fri May 12, 2017 12:56 pm
Forum: VCL
Topic: Multiple .tee plots on one Chart
Replies: 6
Views: 10503

Re: Multiple .tee plots on one Chart

Thank you for great explanation :) I have one more problem LoadChartFromFile(TmpChart, SDIAppForm->ListView3->Items->Item[SDIAppForm->ListView3->Selected->Index]->Caption ); CloneChartSeries(TmpChart[0], SDIAppForm->Chart6); I'm getting Error: [bcc32 Error] SDIMAIN.CPP(1682): E2285 Could not find a ...
by superviper
Tue May 02, 2017 5:35 pm
Forum: VCL
Topic: Multiple .tee plots on one Chart
Replies: 6
Views: 10503

Re: Multiple .tee plots on one Chart

lets explain. I measure temperature each day. Each day is saved on different .tee file.
After some time there is necessary to visually compare 2 charts (for example day 6 and 8).
No database is possible. Only .tee files.

Do you have any idea how to plot 2 .tee files on 1 chart?
by superviper
Sun Apr 23, 2017 8:42 pm
Forum: VCL
Topic: Multiple .tee plots on one Chart
Replies: 6
Views: 10503

Multiple .tee plots on one Chart

I'm collecting and saving Charts in .tee files. From time to time I need to have options to compare 2 .tee save charts to see difference between measurements. To make this I would like to open one .tee file (already thanks to forum support I have mange this) and ten I would like to add second one .t...
by superviper
Sun Apr 23, 2017 8:28 pm
Forum: VCL
Topic: Saving Data to .tee file
Replies: 4
Views: 8996

Re: Saving Data to .tee file

Thank you for support. I took me some time to make it working. The first problem was because I take me time to find out that I should include #include <VCLTee.Teestore.hpp> and the second was because I have put by mistake false option. SaveChartToFile (SDIAppForm->Chart4, "temppomiar.tee", False); t...
by superviper
Thu Apr 20, 2017 3:55 pm
Forum: VCL
Topic: Saving Data to .tee file
Replies: 4
Views: 8996

Re: Saving Data to .tee file

Thanks, I found that I wasn't able to use SaveChartToFile (SDIAppForm->Chart4, "temppomiar.tee", False); LoadChartFromFile(SDIAppForm->Chart4 , "temppomiar.tee"); because of missing #include <VCLTee.Teestore.hpp> Now I have other problem. Program save the file "temppomiar.tee" easly but loading this...
by superviper
Tue Apr 18, 2017 9:00 pm
Forum: VCL
Topic: Saving Data to .tee file
Replies: 4
Views: 8996

Saving Data to .tee file

I would like to save all chart data to .tee file in C++ I haven't problem to save for example to metafile like this SDIAppForm->Chart4->SaveToMetafile("c:\chart1.wmf") ; but I cannot figure out how to save to .tee file. It possible easy solution but I have read examples in toturials (12 chapter) and...