horizBoxPlot is like a regular BoxPlot, however, it draws horizontally instead of Vertically. TODO: Merge code for horizontal and vertical box plots as has been done for bar charts.
| 328 | // TODO: Merge code for horizontal and vertical box plots as has been done for |
| 329 | // bar charts. |
| 330 | type horizBoxPlot struct{ *BoxPlot } |
| 331 | |
| 332 | func (b horizBoxPlot) Plot(c draw.Canvas, plt *plot.Plot) { |
| 333 | trX, trY := plt.Transforms(&c) |
nothing calls this directly
no outgoing calls
no test coverage detected