| 48 | float GetStartTime(void) {if (Data.size() >= 2) return(Data[0][0]); else return(0);} |
| 49 | float GetEndTime(void) {if (Data.size() >= 2) return(Data[Data.size()-1][0]); else return(0);} |
| 50 | float GetMax(int column) {return(Max[column]);} |
| 51 | float GetMin(int column) {return(Min[column]);} |
| 52 | float GetRange(int field) {return (GetMax(field) - GetMin(field));} |
| 53 | float GetAutoAxisMax(int item); |
nothing calls this directly
no outgoing calls
no test coverage detected