Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Latest commit

 

History

History
14 lines (10 loc) · 168 Bytes

16 D3.md

File metadata and controls

14 lines (10 loc) · 168 Bytes

D3 visualizations

D3

  • d3 = jQuery + data
d3.selectAll(".bars")
 .style("background",
 function(data){
    return data.risk > 0.9 ? "red": "green";
 }