* Plot Series or DataFrame as table. * Uses Plotly library as backend, so supports Plotly's configuration parameters * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters.
(plotConfig?: PlotConfigObject)
| 125 | * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters. |
| 126 | */ |
| 127 | table(plotConfig?: PlotConfigObject) { |
| 128 | const _plotConfig = this.getPlotConfig(plotConfig); |
| 129 | tablePlot(this.ndframe, this.divId, _plotConfig, Plotly); |
| 130 | } |
| 131 | |
| 132 | } |
| 133 |
nothing calls this directly
no test coverage detected