| 93 | } |
| 94 | |
| 95 | fg_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 | |
| 111 | fg_err fg_get_chart_axes_limits(float* pXmin, float* pXmax, |
| 112 | float* pYmin, float* pYmax, |
no test coverage detected