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

Function fg_set_chart_axes_limits

src/api/c/chart.cpp:80–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78}
79
80fg_err fg_set_chart_axes_limits(fg_chart pChart,
81 const float pXmin, const float pXmax,
82 const float pYmin, const float pYmax,
83 const float pZmin, const float pZmax)
84{
85 try {
86 ARG_ASSERT(0, (pChart!=0));
87
88 getChart(pChart)->setAxesLimits(pXmin, pXmax, pYmin, pYmax, pZmin, pZmax);
89 }
90 CATCHALL
91
92 return FG_ERR_NONE;
93}
94
95fg_err fg_set_chart_label_format(fg_chart pChart, const char* pXFormat,
96 const char* pYFormat, const char* pZFormat)

Callers 1

setAxesLimitsMethod · 0.85

Calls 2

getChartFunction · 0.85
setAxesLimitsMethod · 0.45

Tested by

no test coverage detected