holoviz / holoviews

With Holoviews, your data visualizes itself.
https://holoviews.org
BSD 3-Clause "New" or "Revised" License
2.7k stars 403 forks source link

Style options are not all supported for matplotlib backend, but hv.help shows them anyway #2887

Open ahuang11 opened 6 years ago

ahuang11 commented 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)

image

jbednar commented 6 years ago

I think this is related to https://github.com/pyviz/hvplot/issues/60 .

philippjfr commented 6 years ago

fill should indeed be removed, ecolor is another broken alias (see https://github.com/ioam/holoviews/issues/697).