D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
molliemarie
Full window
Github gist
FirstScatterPlot_UFOSightings_Starter
Built with
blockbuilder.org
<!DOCTYPE html> <meta charset="utf-8"> <script src="https://d3js.org/d3.v5.min.js"></script> <style type="text/css"> svg { border:1px solid #f0f; } /*NEW CSS GOES HERE*/ </style> <body> </body> <script> const data = [ {"date": "12/2018", "count": 233}, {"date": "11/2018", "count": 228}, {"date": "10/2018", "count": 262}, {"date": "09/2018", "count": 293}, {"date": "08/2018", "count": 350}, {"date": "07/2018", "count": 400}, {"date": "06/2018", "count": 225}, {"date": "05/2018", "count": 243}, {"date": "04/2018", "count": 221}, {"date": "03/2018", "count": 235}, {"date": "02/2018", "count": 235}, {"date": "01/2018", "count": 311} ]; console.log(data) </script>
https://d3js.org/d3.v5.min.js