加载一组新指标/范围的正确方法是什么?即,如果允许用户从多选中的指标列表中进行选择。
现在,我有一个工作实现,它只是运行
d3.select('#graph1').html('');
并重新运行地平线设置, d3.select("#graph1").selectAll(".horizon").data(my_datum.map(load_metric)).enter().insert("div", ".bottom");
但这似乎导致所有先前加载的在加载增量集后从地平线上消失。
加载一组新指标/范围的正确方法是什么?即,如果允许用户从多选中的指标列表中进行选择。
现在,我有一个工作实现,它只是运行
d3.select('#graph1').html('');
并重新运行地平线设置, d3.select("#graph1").selectAll(".horizon").data(my_datum.map(load_metric)).enter().insert("div", ".bottom");
但这似乎导致所有先前加载的在加载增量集后从地平线上消失。