* Plot Series or DataFrame as bars. * 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)
| 65 | * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters. |
| 66 | */ |
| 67 | bar(plotConfig?: PlotConfigObject) { |
| 68 | const _plotConfig = this.getPlotConfig(plotConfig); |
| 69 | barPlot(this.ndframe, this.divId, _plotConfig, Plotly); |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * Plot Series or DataFrame as scatter. |
nothing calls this directly
no test coverage detected