Need to display none or not generate chart marks
问题 This CSS is working for remove marks... #mychart .c3-circles-avg2017, #mychart .c3-circles-avg2018 { display: none; } is a ugly way to do it , because all configs and chart definitions are at Javascrpt. I need to do by Javascript , ideal is to use C3 or D3... I try D3 and it is not working : d3.selectAll('#mychart .c3-circles-avg2017').style("display","none"); d3.selectAll('#mychart .c3-circles-avg2018').style("display","none"); how to obtain same CSS effect by Javascript? (or say to C3 not