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

Function fg_set_chart_label_format

src/api/c/chart.cpp:95–109  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

93}
94
95fg_err fg_set_chart_label_format(fg_chart pChart, const char* pXFormat,
96 const char* pYFormat, const char* pZFormat)
97{
98 try {
99 ARG_ASSERT(0, (pChart!=0));
100 ARG_ASSERT(1, (pXFormat!=0));
101 ARG_ASSERT(2, (pYFormat!=0));
102 ARG_ASSERT(3, (pZFormat!=0));
103
104 getChart(pChart)->setAxesLabelFormat(pXFormat, pYFormat, pZFormat);
105 }
106 CATCHALL
107
108 return FG_ERR_NONE;
109}
110
111fg_err fg_get_chart_axes_limits(float* pXmin, float* pXmax,
112 float* pYmin, float* pYmax,

Callers 1

setAxesLabelFormatMethod · 0.85

Calls 2

getChartFunction · 0.85
setAxesLabelFormatMethod · 0.45

Tested by

no test coverage detected