Bug Description
Tested with the latest version 0.2.4
Reproduction Steps
This works (histogram can be observed from the visdom server portal):
data = np.random.normal(0, 1, size=1000)
trace1 = go.Histogram(x = data, nbinsx = 50)
f0 = make_subplots()
f0.add_trace(trace1)
This does not work (the visdom server portal is empty .... cannot see any figure):
data = np.random.normal(0, 1, size=10000)
trace1 = go.Histogram(x = data, nbinsx = 50)
f0 = make_subplots()
f0.add_trace(trace1)
It seems it clearly depends on the number observations ('size' param)
Thxx