(vertical: boolean, axes: Axes)
| 30 | } |
| 31 | |
| 32 | function getPlotAxisData(vertical: boolean, axes: Axes) { |
| 33 | return vertical ? axes.xAxis : axes.yAxis; |
| 34 | } |
| 35 | export default class Plot extends Component { |
| 36 | models: PlotModels = { plot: [], line: [], band: [] }; |
| 37 |
no outgoing calls
no test coverage detected