* Plot Series or DataFrame as pie. * 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)
| 95 | * @param plotConfig configuration options for making Plots, supports Plotly.js Config and Layout parameters. |
| 96 | */ |
| 97 | pie(plotConfig?: PlotConfigObject) { |
| 98 | const _plotConfig = this.getPlotConfig(plotConfig); |
| 99 | piePlot(this.ndframe, this.divId, _plotConfig, Plotly); |
| 100 | } |
| 101 | |
| 102 | /** |
| 103 | * Plot Series or DataFrame as boxplot. |
nothing calls this directly
no test coverage detected