| 188 | } |
| 189 | |
| 190 | void Window::setAxesTitles(const char* const xtitle, const char* const ytitle, |
| 191 | const char* const ztitle) { |
| 192 | af_cell temp{_r, _c, NULL, AF_COLORMAP_DEFAULT}; |
| 193 | AF_THROW(af_set_axes_titles(get(), xtitle, ytitle, ztitle, &temp)); |
| 194 | } |
| 195 | |
| 196 | void Window::setAxesLabelFormat(const char* const xformat, |
| 197 | const char* const yformat, |
no test coverage detected