You are here:
Symbol Reference >
MtxVecTee Namespace
>
Functions
>
MtxVecTee.DrawValues Function
MtxVec VCL
Example
MtxVecTee.DrawValues Function
Plot data coming from several instruments using one line of code:
var
y1,y2,y3: Vector; fast1,fast2,fast3:
TMtxFastLineSeries
;
begin
// ...
DrawValues([y1,y2,y3],[fast1,fast2,fast3], True);
// downsample data
// ...
end
;
sVector y1,y2,y3;
TMtxFastLineSeries
fast1,fast2,fast3; begin
// ...
DrawValues(OPENARRAY(
TVec
*,(y1,y2,y3)),OPENARRAY(
TMtxFastLineSeries
*,(fast1,fast2,fast3)),
true
);
// downsample data
// ...
end;
Copyright (c) 1999-2025 by Dew Research. All rights reserved.