| 160 | } |
| 161 | |
| 162 | fg_err fg_append_histogram_to_chart(fg_chart pChart, fg_histogram pHistogram) |
| 163 | { |
| 164 | try { |
| 165 | ARG_ASSERT(0, (pChart!=0)); |
| 166 | ARG_ASSERT(1, (pHistogram!=0)); |
| 167 | |
| 168 | getChart(pChart)->addRenderable(getHistogram(pHistogram)->impl()); |
| 169 | } |
| 170 | CATCHALL |
| 171 | |
| 172 | return FG_ERR_NONE; |
| 173 | } |
| 174 | |
| 175 | fg_err fg_append_plot_to_chart(fg_chart pChart, fg_plot pPlot) |
| 176 | { |
no test coverage detected