| 133 | } |
| 134 | |
| 135 | fg_err fg_set_chart_legend_position(fg_chart pChart, const float pX, const float pY) |
| 136 | { |
| 137 | try { |
| 138 | ARG_ASSERT(0, (pChart!=0)); |
| 139 | ARG_ASSERT(0, (pX>=0)); |
| 140 | ARG_ASSERT(0, (pY>=0)); |
| 141 | |
| 142 | getChart(pChart)->setLegendPosition(pX, pY); |
| 143 | } |
| 144 | CATCHALL |
| 145 | |
| 146 | return FG_ERR_NONE; |
| 147 | } |
| 148 | |
| 149 | fg_err fg_append_image_to_chart(fg_chart pChart, fg_image pImage) |
| 150 | { |
no test coverage detected