Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document extra keywords caught internally #1519

Merged
merged 3 commits into from
Mar 4, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions hvplot/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,24 @@ class HoloViewsConverter:
-------------
bgcolor (default=None): str
Background color of the data area of the plot
color: str or list, optional
Color(s) to use for the plot. Accepts a single color, a list of colors, or
a column name from the data to map colors based on values.
c: str or list, optional
Alias for `color`. Used for specifying colors in scatter plots and other
elements that support color mapping.
cmap: str or list, optional
The colormap to use for continuous or categorical color mapping.
Accepts colormap names, dictionaries for discrete mapping,
colormap objects, or custom lists.
colormap: str or list, optional
Alias for `cmap`. The colormap to apply when using color mapping.
Can be a predefined colormap name (e.g., 'viridis', 'plasma') or a custom list of colors.
color_key: str or list, optional
Colormapping for use in categorical datashaded plots
where distinct colors need to be assigned to categories.
The length of the color key used must be at least the same
as the length of the categories in the data.
clim: tuple
Lower and upper bound of the color scale
cnorm (default='linear'): str
Expand Down
Loading