| 73 | } |
| 74 | |
| 75 | fg_err fg_set_plot_legend(fg_plot pPlot, const char* pLegend) |
| 76 | { |
| 77 | try { |
| 78 | ARG_ASSERT(0, (pPlot!=0)); |
| 79 | ARG_ASSERT(1, (pLegend!=0)); |
| 80 | |
| 81 | getPlot(pPlot)->setLegend(pLegend); |
| 82 | } |
| 83 | CATCHALL |
| 84 | |
| 85 | return FG_ERR_NONE; |
| 86 | } |
| 87 | |
| 88 | fg_err fg_set_plot_marker_size(fg_plot pPlot, const float pMarkerSize) |
| 89 | { |