You are here: Symbol Reference > MtxVecTee Namespace > Functions > MtxVecTee.DrawValues Function
MtxVec VCL
ContentsIndex
PreviousUpNext
MtxVecTee.DrawValues Function

Copy each of the vector in Vectors array to separate series in Series array.

Pascal
procedure DrawValues(const Vectors: Array of TVec; const Series: array of TChartSeries; PixelDownSample: boolean = false); overload;

If parameter PixelDownSample is True, the DrawValues will automatically use PixelDownSample method to reduce the number of points displayed for all series (much faster display).

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;
Examples on GitHub
Copyright (c) 1999-2025 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!