From 040d1a246b8ad65519a1b267d0732a0030a41d2a Mon Sep 17 00:00:00 2001 From: Philipp Rudiger Date: Sat, 15 Jul 2017 17:10:04 -0500 Subject: [PATCH] Define default group on Dataset (#1724) --- holoviews/core/data/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/holoviews/core/data/__init__.py b/holoviews/core/data/__init__.py index 96bdbc17a1..4cd41d9b4b 100644 --- a/holoviews/core/data/__init__.py +++ b/holoviews/core/data/__init__.py @@ -157,6 +157,8 @@ class Dataset(Element): format listed will be used until a suitable format is found (or the data fails to be understood).""") + group = param.String(default='Dataset', constant=True) + # In the 1D case the interfaces should not automatically add x-values # to supplied data _auto_indexable_1d = True