MCPcopy Create free account
hub / github.com/arrayfire/forge / setAxesTitles

Method setAxesTitles

src/backend/opengl/chart_impl.cpp:220–227  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

218}
219
220void AbstractChart::setAxesTitles(const char* pXTitle,
221 const char* pYTitle,
222 const char* pZTitle)
223{
224 mXTitle = (pXTitle ? std::string(pXTitle) : std::string("X-Axis"));
225 mYTitle = (pYTitle ? std::string(pYTitle) : std::string("Y-Axis"));
226 mZTitle = (pZTitle ? std::string(pZTitle) : std::string("Z-Axis"));
227}
228
229void AbstractChart::setLegendPosition(const float pX, const float pY)
230{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected