Search found 21 matches

by kai
Wed Nov 29, 2006 3:09 am
Forum: VCL
Topic: Tutorials on dataset connections
Replies: 4
Views: 7992

Success!!!

That works! Thank you very much! I really appreciate your expertise.
by kai
Tue Nov 28, 2006 1:55 am
Forum: VCL
Topic: Tutorials on dataset connections
Replies: 4
Views: 7992

Functions

Hi, saving and and loading functions works fine with 7.04. However, my problem is that when I move series in the chart that use functions based on other series, those other series are mapped to the their relative positions (ie chart1.series[30]). So, if I insert new series in those positions, the fu...
by kai
Mon Nov 27, 2006 3:01 am
Forum: VCL
Topic: Tutorials on dataset connections
Replies: 4
Views: 7992

Tutorials on dataset connections

Hi I am loading teecharts from a database using streams into a chart. I recently added some series in the chart and need to move any existing customized series to be past the 3 new series that I've added to the chart. My chart had 31 series in it, but now there are 34. I clone any series that the us...
by kai
Sun Nov 26, 2006 5:40 pm
Forum: VCL
Topic: Null data with DBChart
Replies: 3
Views: 6730

Please share

Hi,
Would you please post your solution to the null here? I have been looking for something like that for a long time. I would really appreciate it.
Thanks!
by kai
Tue Nov 07, 2006 2:37 am
Forum: VCL
Topic: dbChart Single record choice at runtime
Replies: 9
Views: 13640

Why is it my duty..?

Hi, I have contacted Digital Metaphors. What they tell me is that I have to code a passthrough function to expose the teechart's series. However, doing so still does not give you the option of a single DBPipeline to use on the TeeChart, and the TeeChart does not have the proper boxes to allow you to...
by kai
Fri Oct 27, 2006 2:01 am
Forum: VCL
Topic: dbChart Single record choice at runtime
Replies: 9
Views: 13640

Hi,
Has the ability to pick "single record" for a db pie chart been implemented yet? And, can you now plot slices of the pie based on many fields in a single record?

My clients are pestering me for this feature when they design reports in Report Builder Enterprise..
Thanks.
kai
by kai
Tue May 09, 2006 12:15 am
Forum: VCL
Topic: dbChart Single record choice at runtime
Replies: 9
Views: 13640

Thanks.

Thank you for the information. I appreciate it. Yes, I am in contact with Digital Metaphors because, at this time with Delphi 7 Pro and Reportbuilder 9.02, the user cannot pick the "Single Record" at end-user runtime, so they cannot create pie charts in a Report Builder end-user report which contain...
by kai
Wed May 03, 2006 3:27 am
Forum: VCL
Topic: dbChart Single record choice at runtime
Replies: 9
Views: 13640

Getting there..

Hi Narcis, Thank you for your reply! I can get the "Single Record", the "Summary" and "Dataset" to show up in the runtime dbchart editor by adding this line to the uses clause: Uses EditChar, DBEditCh; { to show Database DBChart editor dialogs } However, I cannot figure out how to get the other opti...
by kai
Sun Apr 30, 2006 10:43 pm
Forum: VCL
Topic: dbChart Single record choice at runtime
Replies: 9
Views: 13640

dbChart Single record choice at runtime

Hi, When I edit a dbChart (7.04) at design time, there are many choices in the "Data Source" tab for the series, as in: Manual Random Function Single Record Summary DataSet CrossTab Text File XML File Yet, at runtime, when you open the chart editor, you only see three choices: Manual Random Function...
by kai
Fri Apr 15, 2005 10:13 pm
Forum: VCL
Topic: series.custombarwidth to chart1.series[0].???
Replies: 2
Views: 5790

Thanks

Hi,
That works great!.
Thanks. I appreciate your help.
pl
by kai
Sun Apr 10, 2005 9:52 pm
Forum: VCL
Topic: LoadChartFromStream
Replies: 1
Views: 4819

Solved

Hi, I figured it out. 1) Create a memo field in the Advantage table. Call it MyChart. The table name is Charts. 2) To save the chart do this: procedure TForm1.Button6Click(Sender: TObject); var thestream: tmemoryStream; // SAVE THE CHART TO THE ADV TABLE begin try try thestream := tmemoryStream.crea...
by kai
Sun Apr 10, 2005 8:44 pm
Forum: VCL
Topic: LoadChartFromStream
Replies: 1
Views: 4819

LoadChartFromStream

Hi, TeeChartPro 7.04, Delphi 7 Pro I think there is a bug in the LoadChartFromStream function. I can't get this code to compile: procedure TForm1.Button11Click(Sender: TObject); var memstr: tmemoryStream; begin memstr := tmemoryStream.create; saveChartToStream(chart1, memstr, false, true); showmessa...
by kai
Sat Apr 09, 2005 4:42 am
Forum: VCL
Topic: series.custombarwidth to chart1.series[0].???
Replies: 2
Views: 5790

series.custombarwidth to chart1.series[0].???

Hi, I am converting my "series1" to chart1.series[0] so I can change the series from bars to lines or whatever and still make it SaveChartToFile(..) and LoadChartFromFile(..). Everything was compiling ok until I tried to change this line: series1.custombarwidth := 5; // old line chart1.series[0].Cus...
by kai
Mon Oct 25, 2004 11:57 pm
Forum: VCL
Topic: Title doesn't print if "Position" is "Custom&
Replies: 4
Views: 8945

Here is more on this subject: If I set the Title's "Custom" checkbox to checked and adjust the left and top, the title does not print in the Chart Editor's print preview. However, if I drop a ChartPreviewer on the form and make sure the "Smooth" setting is on and the "As Bitmap" is on, the Title doe...
by kai
Wed Oct 20, 2004 1:50 am
Forum: VCL
Topic: Title doesn't print if "Position" is "Custom&
Replies: 4
Views: 8945

Another solution is to print the chart as a bitmap and forget about the "Detail" more-->normal. I think the way you are printing is to reconstruct all components of the chart and that gives you the ability to change the size of each component. But, you did not handle the Title component properly wit...