hvplot_get
Get hvPlot docstrings or signatures for any plot type. Default output shows only plot-specific parameters, with options to include generic and style details.
Instructions
Get the hvPlot docstring or signature for a specific plot type.
Returns only the plot-specific parameters by default (compact output).
Set generic=True and/or style=True for the full docstring including all shared options.
Equivalent to hvplot.help(plot_type) in the hvPlot API. Pass signature=True to get the
function signature instead of the docstring.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| plot_type | Yes | The type of plot to provide help for (e.g., 'line', 'scatter'). | |
| signature | No | If True, return the function signature instead of the docstring. | |
| docstring | No | Whether to include the docstring in the output. | |
| generic | No | Whether to include generic plotting options shared by all plot types. | |
| style | No | Plotting backend to use for style options. If True, automatically infers the backend. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |