Skip to content

Commit

Permalink
set bounds (3,3) on TriSurface to override Geometry.bounds of (2, 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
maximlt committed Mar 17, 2023
1 parent 3e66b53 commit 1e2b99f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/element/chart3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class TriSurface(Element3D, Points):
group = param.String(default='TriSurface', constant=True)

kdims = param.List(default=[
Dimension('x'), Dimension('y'), Dimension('z')], doc="""
Dimension('x'), Dimension('y'), Dimension('z')], bounds=(3, 3), doc="""
The key dimensions of a TriSurface represent the 3D coordinates
of each point.""")

Expand Down

0 comments on commit 1e2b99f

Please sign in to comment.