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

Function fg_set_chart_axes_titles

src/api/c/chart.cpp:65–78  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

63}
64
65fg_err fg_set_chart_axes_titles(fg_chart pChart,
66 const char* pX,
67 const char* pY,
68 const char* pZ)
69{
70 try {
71 ARG_ASSERT(0, (pChart!=0));
72
73 getChart(pChart)->setAxesTitles(pX, pY, pZ);
74 }
75 CATCHALL
76
77 return FG_ERR_NONE;
78}
79
80fg_err fg_set_chart_axes_limits(fg_chart pChart,
81 const float pXmin, const float pXmax,

Callers 1

setAxesTitlesMethod · 0.85

Calls 2

getChartFunction · 0.85
setAxesTitlesMethod · 0.45

Tested by

no test coverage detected