* Plot Series or DataFrame as lines. * 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)
| 55 | * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters. |
| 56 | */ |
| 57 | line(plotConfig?: PlotConfigObject) { |
| 58 | const _plotConfig = this.getPlotConfig(plotConfig); |
| 59 | linePlot(this.ndframe, this.divId, _plotConfig, Plotly); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Plot Series or DataFrame as bars. |
nothing calls this directly
no test coverage detected