* Plot Series or DataFrame as scatter. * 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)
| 75 | * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters. |
| 76 | */ |
| 77 | scatter(plotConfig?: PlotConfigObject) { |
| 78 | const _plotConfig = this.getPlotConfig(plotConfig); |
| 79 | scatterPlot(this.ndframe, this.divId, _plotConfig, Plotly); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * Plot Series or DataFrame as histogram. |
nothing calls this directly
no test coverage detected