Search found 9 matches

by vasile
Thu Jun 29, 2006 9:51 am
Forum: VCL
Topic: Runtime editor bug
Replies: 3
Views: 3296

Hello,

Thanks for the quick response.
Do you have an approximate date for the next release?

Thanks,
Vasile
by vasile
Thu Jun 29, 2006 9:25 am
Forum: VCL
Topic: Runtime editor bug
Replies: 3
Views: 3296

Runtime editor bug

Hi, I have a dbchart and 2 tables on a form. I invoke the designer at runtime to add a new serie. I create a bar serie (Serie1) and bind Table1 to it (assign Table1 fields to Labels, X, Bar). I close the editor. I open it again and change the dataset for Serie1 to Table2(assign Table2 fields to Labe...
by vasile
Thu Jun 29, 2006 9:13 am
Forum: VCL
Topic: Serie's datasource limited selection at runtime
Replies: 1
Views: 2477

I have figured out how to fix it. I had to add: #include "EditChar.hpp" #include "DBEditCh.hpp" #include "TeeEditPRO.hpp" #include "TeeSeriesTextEd.hpp" #include "TeeDbCrossTab.hpp" #pragma link "EditChar" #pragma link "DBEditCh" #pragma link "TeeEditPRO" #pragma link "TeeSeriesTextEd" #pragma link ...
by vasile
Mon Jun 26, 2006 11:50 am
Forum: VCL
Topic: Serie's datasource limited selection at runtime
Replies: 1
Views: 2477

Serie's datasource limited selection at runtime

Hello, I have a dbchart, several tables and several datasources components on a form. At design time in C++Builder IDE I have the following options when assigning the datasource for a serie: Manual Random Function Text File Summary Single Record Dataset Crosstab XML File If I select dataset I can se...
by vasile
Fri Jun 23, 2006 12:34 pm
Forum: VCL
Topic: Serie's datasource not restored when chart loaded from file
Replies: 1
Views: 2307

Serie's datasource not restored when chart loaded from file

Hello, I have a dbchart where each serie is linked to a different datasource. This chart is saved to a file and restored later. SaveChartToFile(Chart, SaveChartDialog->FileName, true, true); restore: LoadChartFromFile(Chart, OpenDialog->FileName); Although the datasource link is stored in the file f...
by vasile
Fri Jun 23, 2006 10:17 am
Forum: VCL
Topic: Vertical bar series question
Replies: 6
Views: 4826

OK, thank you.
by vasile
Thu Jun 22, 2006 3:52 pm
Forum: VCL
Topic: Vertical bar series question
Replies: 6
Views: 4826

Thanks for the example.
It works fine now except one small thing: there is a gap between C and D bars - because of the ids (104 and 120), is it possible to display the bars at the same distance one from another?

I could have ids like 101,102,120, 1200, 5000, etc.

Thanks,
Vasile
by vasile
Thu Jun 22, 2006 2:21 pm
Forum: VCL
Topic: Vertical bar series question
Replies: 6
Views: 4826

Unfortunately I get those values from a database so I can't get 0,1,2,3,etc.
I only can get some ids in ascending order but they are not sequential (100,101,104,120 for example).

If I add :

100, A, 100
101, B, 80
104, C, 50
120, D, 70

and

104, C, 50
120, D, 70

it still doesn't work...
by vasile
Thu Jun 22, 2006 12:06 pm
Forum: VCL
Topic: Vertical bar series question
Replies: 6
Views: 4826

Vertical bar series question

Hello, I have a chart with 2 vertical bar series. The series are not stacked. The first serie's datasource has the values: A, 100 B, 80 C, 50 D, 70 The second serie's datasource has the values: C, 20 D, 30 Now when I display the chart, the values from the second serie are displayed over A and B but ...