| 63 | } |
| 64 | |
| 65 | fg_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 | |
| 80 | fg_err fg_set_chart_axes_limits(fg_chart pChart, |
| 81 | const float pXmin, const float pXmax, |
no test coverage detected