| 106 | } |
| 107 | |
| 108 | Histogram Chart::histogram(const unsigned pNBins, const dtype pDataType) |
| 109 | { |
| 110 | fg_histogram temp = 0; |
| 111 | FG_THROW(fg_add_histogram_to_chart(&temp, get(), pNBins, (fg_dtype)pDataType)); |
| 112 | return Histogram(temp); |
| 113 | } |
| 114 | |
| 115 | Plot Chart::plot(const unsigned pNumPoints, const dtype pDataType, |
| 116 | const PlotType pPlotType, const MarkerType pMarkerType) |
no test coverage detected