tawheeler / CrossfilterCharts.jl

A Julia package for automagical DC.js linked charts in your IJulia notebook
Other
17 stars 5 forks source link

reset all button migrates to latest notebook cell. #11

Closed tawheeler closed 8 years ago

tawheeler commented 8 years ago

If you run multiple DC visualizations in a single notebook, the reset_all button will move to the latest cell. See the doc notebook for an example.

session-id commented 8 years ago

This seems to be a big overall issue with the new iframe-less output: since the outputs are no longer separated by the iframe barrier, they can actually interfere with each other. Most notably, attempting to output the same dcout twice will cause the second to display nothing (since all the supposedly unique chart_id's are bound to the objects in the first chart output).

session-id commented 8 years ago

I've decided to randomize the id's given to each chart every time the output is produced to avoid the above problem. Still working on the reset buttons.