Skip to content

Commit

Permalink
Add missing keywords in the correct special lists #1506
Browse files Browse the repository at this point in the history
  • Loading branch information
Azaya89 committed Feb 24, 2025
1 parent a4c3550 commit a24cd3a
Showing 1 changed file with 32 additions and 3 deletions.
35 changes: 32 additions & 3 deletions hvplot/converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -431,6 +431,20 @@ class HoloViewsConverter:
'backlog',
'persist',
'sort_date',
'attr_labels',
'fields',
'groupby',
'label',
'robust',
'row',
'col',
'stacked',
'subplots',
'symmetric',
'check_symmetric_max',
'transforms',
'framewise',
'stream',
]

_geo_options = [
Expand All @@ -440,8 +454,9 @@ class HoloViewsConverter:
'project',
'coastline',
'tiles',
'tiles_opts',
'projection',
'global_extents',
'global_extent',
]

_axis_options = [
Expand All @@ -460,6 +475,7 @@ class HoloViewsConverter:
'title',
'logx',
'logy',
'logz',
'loglog',
'xaxis',
'yaxis',
Expand All @@ -476,11 +492,17 @@ class HoloViewsConverter:
'min_width',
'frame_height',
'frame_width',
'aspect',
'data_aspect',
'fontscale',
'bgcolor',
'subcoordinate_y',
'clim',
'flip_xaxis',
'flip_yaxis',
'tools',
'hover',
'hover_cols',
'hover_formatters',
'hover_tooltips',
]

_style_options = [
Expand All @@ -494,6 +516,8 @@ class HoloViewsConverter:
'color_key',
'cnorm',
'rescale_discrete_levels',
'aspect',
'data_aspect',
]

_op_options = [
Expand All @@ -505,6 +529,11 @@ class HoloViewsConverter:
'downsample',
'aggregator',
'resample_when',
'autorange',
'dynspread',
'max_px',
'precompute',
'threshold',
]

# Options specific to a particular plot type
Expand Down

0 comments on commit a24cd3a

Please sign in to comment.