| 113 | } |
| 114 | |
| 115 | Plot Chart::plot(const unsigned pNumPoints, const dtype pDataType, |
| 116 | const PlotType pPlotType, const MarkerType pMarkerType) |
| 117 | { |
| 118 | fg_plot temp = 0; |
| 119 | FG_THROW(fg_add_plot_to_chart(&temp, get(), pNumPoints, (fg_dtype)pDataType, |
| 120 | pPlotType, pMarkerType)); |
| 121 | return Plot(temp); |
| 122 | } |
| 123 | |
| 124 | Surface Chart::surface(const unsigned pNumXPoints, const unsigned pNumYPoints, const dtype pDataType, |
| 125 | const PlotType pPlotType, const MarkerType pMarkerType) |