Page 1 of 1

Calculating Functions

Posted: Tue Jan 17, 2006 1:42 pm
by 9231248
Hello

How do I get my function to calculate?

I have set up the data source with
objChart.Chart.Series[1].DataSource:=objChart.Chart.Series[0];

But series 1 has no points?

I cannot access the function to call recalculate because I dont know where to find it, all I know is that functions are held against a series.

I am doing all of this at runtime so I cant access anything visually

Cheers

Paul

Posted: Tue Jan 17, 2006 1:52 pm
by narcis
Hi Paul,

You need to use series CheckDataSource method:

Code: Select all

objChart[0].CheckDataSource;

Posted: Tue Jan 17, 2006 2:57 pm
by 9231248
Thanks this works

Please see my other question for the problems I am still encountering