(axes: Axes, scale?: Scale)
| 143 | } |
| 144 | |
| 145 | renderPlots(axes: Axes, scale?: Scale): LineModel[] { |
| 146 | const vertical = true; |
| 147 | |
| 148 | return axes.centerYAxis |
| 149 | ? this.renderPlotsForCenterYAxis(axes) |
| 150 | : [ |
| 151 | ...this.renderPlotLineModels(this.getHorizontalTickPixelPositions(axes), !vertical, { |
| 152 | axes, |
| 153 | }), |
| 154 | ...this.renderPlotLineModels(this.getVerticalTickPixelPositions(axes, scale), vertical, { |
| 155 | axes, |
| 156 | }), |
| 157 | ]; |
| 158 | } |
| 159 | |
| 160 | getVerticalTickPixelPositions(axes: Axes, scale?: Scale) { |
| 161 | const { offsetSize } = this.getPlotAxisSize(true); |
no test coverage detected