| 78 | } |
| 79 | |
| 80 | fg_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 | |
| 95 | fg_err fg_set_chart_label_format(fg_chart pChart, const char* pXFormat, |
| 96 | const char* pYFormat, const char* pZFormat) |
no test coverage detected