Skip to content

Commit

Permalink
make irregaluar if non-dimensional coordinate
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed Feb 26, 2024
1 parent a66eb55 commit 4571b91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/data/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ def concat_dim(cls, datasets, dim, vdims):

@classmethod
def irregular(cls, dataset, dim):
return dataset.data[dimension_name(dim)].ndim > 1
return dataset.data[dimension_name(dim)].ndim > 1 or dimension_name(dim) not in dataset.data.dims


@classmethod
Expand Down

0 comments on commit 4571b91

Please sign in to comment.