(TeeChart for C++ Builder 2009 ) I need to draw large moving line graph which have "holes" (isn't continuous). Currently I'm using TLineSeries and functions AddXY and AddNullXY but it's too slow. TFastLineSeries is faster but it can't draw "holes" - AddNullXY just add point with value 0.
I tried to modify directly DynamicArray and add it Series1->XValues->Value =(TChartValues)(array); but I don't know how to insert NULL point to DynamicArray?
NULL point in array?
Re: NULL point in array?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: NULL point in array?
Thank you Yeray. It was helpful.
(BTW I discovered that TFastLine can handle NULL points, I just overlooked properties IgnoreNulls and TreatNulls)
(BTW I discovered that TFastLine can handle NULL points, I just overlooked properties IgnoreNulls and TreatNulls)