Search found 21 matches

by MTW
Mon Sep 22, 2008 2:59 pm
Forum: VCL
Topic: Adding arrays to TLineSeries BCB 6.0
Replies: 8
Views: 12277

Thank you very much. I was close in some of my attempts, based upon the article and porting it to C, but your example resolves all the issues I ran into.
by MTW
Mon Sep 22, 2008 1:24 pm
Forum: VCL
Topic: Adding arrays to TLineSeries BCB 6.0
Replies: 8
Views: 12277

I am using V 8.0. I have seen the article and am trying to figure out how to get it done in C - BCB v6.0. If there is a BCB example, as demonstrated in the article, in one of the modules in the example folders, I will gladly look at it. If not, is it possible to include a few lines of code showing h...
by MTW
Mon Sep 22, 2008 12:22 pm
Forum: VCL
Topic: Adding arrays to TLineSeries BCB 6.0
Replies: 8
Views: 12277

Thank you. However, when I run Tee8New.exe, I get an error "Class TSurfaceSides Not Found" and when I go to All Features\Welcome\Speed\Fast Dynamic Arrays, I do not get the example showing. Perhaps you could identify the module that uses arrays for both X and Y variables. I am able to use AddArray f...
by MTW
Sun Sep 21, 2008 4:53 am
Forum: VCL
Topic: Adding arrays to TLineSeries BCB 6.0
Replies: 8
Views: 12277

Adding arrays to TLineSeries BCB 6.0

I am trying to add an array of X and an array of Y values to a TLineSeries (TFastLineSeries) using BCB 6.0. I cannot see how to do this from the examples. Any assistance would greatly be appreciated.

Thanks

M Weingarden
by MTW
Tue Mar 18, 2008 5:12 pm
Forum: VCL
Topic: BCB Code for adding custom axes
Replies: 3
Views: 4738

labels on a custom axis

Thank you for the code snippet. I am using the following code: TChartAxis *TpAxis; TpAxis = new TChartAxis(Chart1->CustomAxes); TpAxis->Horizontal = true; TpAxis->Minimum =0; TpAxis->Maximum = 90; Series2->CustomHorizAxis = TpAxis; TpAxis->PositionPercent = 5; TpAxis->Items->Add(10,"220"); to add a ...
by MTW
Mon Mar 17, 2008 8:48 pm
Forum: VCL
Topic: BCB Code for adding custom axes
Replies: 3
Views: 4738

BCB Code for adding custom axes

I am using TeeChart 8.02 with BCB 6.0. I am looking for example BCB code to allow me to add custom axes to a chart.

Thank you.