| 884 | |
| 885 | |
| 886 | class hvGeomExplorer(hvPlotExplorer): |
| 887 | kind = param.Selector(default=None, objects=KINDS['all']) |
| 888 | |
| 889 | @property |
| 890 | def _var_name(self): |
| 891 | return 'gdf' |
| 892 | |
| 893 | @property |
| 894 | def _single_y(self): |
| 895 | return True |
| 896 | |
| 897 | @property |
| 898 | def _x(self): |
| 899 | return None |
| 900 | |
| 901 | @property |
| 902 | def _y(self): |
| 903 | return None |
| 904 | |
| 905 | @param.depends('x') |
| 906 | def xlim(self): |
| 907 | pass |
| 908 | |
| 909 | @param.depends('y') |
| 910 | def ylim(self): |
| 911 | pass |
| 912 | |
| 913 | @property |
| 914 | def _groups(self): |
| 915 | return ['gridded', 'dataframe'] |
| 916 | |
| 917 | |
| 918 | class hvGridExplorer(hvPlotExplorer): |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…