<div id ='info'>
<h3>A simple line chart example.</h3>
</div>
<div id = 'chart'></div>
#info{
margin: 1em;
}
//A simple line chart structure
//Structure of the dataSet
let dataSet = [{l: 1 , v: 3},
{l: 4 , v: 7},
{l: 6 , v: 9}
];
let chart = d3_rs_lines.html();
d3.select('#chart')
.datum(dataSet)
.call(chart);
View Compiled