我正在使用d3。我有一个名为#risk的单选按钮组。这包括值" apple"," Orange"," Lemon"。 我在屏幕上有一个单独的按钮,将值重置为" Apple"。因此,如果他们选择"柠檬"然后点击重置,新值将是" Apple"。知道如何做到这一点。难以实现一些应该非常微不足道的事情。 这里是单选按钮代码:
<div id="risk">
<form>
<span>
<input type="radio" class="risk" name="mode" value= Apple">
<label> All</label>
</span>
<span>
<input type="radio" class="risk" name="mode" value= Orange">
<label> All</label>
</span>
<span>
<input type="radio" class="risk" name="mode" value= Lemon">
<label> All</label>
</span>
</form>
以下是更新按钮的代码:
d3.select("#resetChart")
.on("click",function() {
d3.selectAll("#risk").selectAll("input") //somehow make this select a radio button
});
我的上次编辑被拒绝了。我不知道在什么基础上。如果这不合适,您可以告诉我需要做些什么来改进它吗?非常感谢:))