Open ahuang11 opened 6 years ago
i.e. fill and ecolor (ecolor I assume is edgecolor and ec so not too big of deal)
import xarray as xr import hvplot.xarray import holoviews as hv hv.extension('matplotlib') ds = xr.tutorial.load_dataset('air_temperature') ds.hvplot.contourf('lon', 'lat', groupby='time').options(fill=False) ds.hvplot.contourf('lon', 'lat', groupby='time').options(ecolor='red') hv.help(hv.Polygons)
I think this is related to https://github.com/pyviz/hvplot/issues/60 .
fill should indeed be removed, ecolor is another broken alias (see https://github.com/ioam/holoviews/issues/697).
fill
ecolor
i.e. fill and ecolor (ecolor I assume is edgecolor and ec so not too big of deal)