Search found 4 matches

by FredrikOstlund
Sun Feb 06, 2011 6:18 pm
Forum: VCL
Topic: TLineSeries with TeeChart2010
Replies: 4
Views: 3340

Re: TLineSeries with TeeChart2010

Found the problem. Include files had to go at the top in c++ builder.
by FredrikOstlund
Sun Feb 06, 2011 11:22 am
Forum: VCL
Topic: TLineSeries with TeeChart2010
Replies: 4
Views: 3340

Re: TLineSeries with TeeChart2010

Oh, I'm using the latest (Feb 2011) Pro version of TeeChart.
by FredrikOstlund
Sun Feb 06, 2011 11:20 am
Forum: VCL
Topic: TLineSeries with TeeChart2010
Replies: 4
Views: 3340

Re: TLineSeries with TeeChart2010

Hi again, an update: I found the AddXY not working under c++ is already known: http://www.teechart.net/support/viewtopic.php?f=3&t=11993&p=51484&hilit=addxy#p51484 However, the fix given there does not work either. Also, the following functions raises exceptions: * Series1->Color = clRed; * Chart1->...
by FredrikOstlund
Sat Feb 05, 2011 6:03 pm
Forum: VCL
Topic: TLineSeries with TeeChart2010
Replies: 4
Views: 3340

TLineSeries with TeeChart2010

Hi, I have serious problems with the TLineSeries in the new TeeChart for VCL. Using AddXY to add a point does not work properly. The following code snippet shows an empty plot: void __fastcall TForm1::FormCreate(TObject *Sender) { for (double i = 0; i < 10; i++) { Series1->AddXY(2 * i, i); } } Furth...