| 200 | } |
| 201 | |
| 202 | void AbstractChart::setAxesLabelFormat(const std::string& pXFormat, |
| 203 | const std::string& pYFormat, |
| 204 | const std::string& pZFormat) |
| 205 | { |
| 206 | mXLabelFormat = std::string(pXFormat); |
| 207 | mYLabelFormat = std::string(pYFormat); |
| 208 | mZLabelFormat = std::string(pZFormat); |
| 209 | } |
| 210 | |
| 211 | void AbstractChart::getAxesLimits(float* pXmin, float* pXmax, |
| 212 | float* pYmin, float* pYmax, |
nothing calls this directly
no outgoing calls
no test coverage detected