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

You want to plot error chart by ussing TErrorSeries (see Teechart help to learn more about this). If the necessary data is stored in three vectors: 

 

Vectors[0] = XVec, Vectors[1] = YVec, Vectors[2] = ErrorVec

 

then you can use 

 

var x,y,error: Vector; begin // ... DrawValues([x,y,error],ErrorSeries1); // ... end;

 

sVector x,y,error; // ... DrawValues(OPENARRAY(TVec*,(x,y,error)),ErrorSeries1); // ...
Copyright (c) 1999-2025 by Dew Research. All rights reserved.