Published
Edited
Jul 1, 2020
2 forks
1 star
Insert cell
Insert cell
{
const canvas = d3.select(DOM.svg(width, height))

canvas.append("g")
.attr("class", "axis")
.attr("transform", "translate(0," + (height-margin.bottom) + ")")
.call(xAxis)
canvas.append("text")
.attr("x", width/2)
.attr("y", height-5)
.style("text-anchor", "middle")
.text("Months - 2019")
canvas.append("g")
.attr("class", "axis")
.attr("transform", "translate(" + margin.left + ",0)")
.call(yAxis)
canvas.append("text")
.attr("transform", "rotate(-90,15,"+(height/2)+")")
.attr("x", 15)
.attr("y", height/2)
.style("text-anchor", "middle")
.text("Interest")
canvas.append("g").selectAll("path")
.data([data])
.join("path")
.attr("d", line)
.style("stroke", "black" )
.style("stroke-width", 2)
.style("fill", "none")
return canvas.node();
}
Insert cell
x = d3.scaleTime().range([margin.left , width - margin.right]).domain(d3.extent(data, (d,i) => d.date))
Insert cell
xAxis = d3.axisBottom().scale(x)
.tickFormat(d3.timeFormat("%b"))
Insert cell
y = d3.scaleLinear().range([height-margin.bottom , margin.top]).domain(d3.extent(data, (d,i) => d.interest))
Insert cell
yAxis = d3.axisLeft()
.scale(y)
.tickFormat((d,i) => d + "%")
Insert cell
line = d3.line()
.x((d,i)=> x(d.date))
.y((d,i)=> y(d.interest))
Insert cell
Insert cell
iceCream = [
({date:"01/2019",interest:"20"}),
({date:"02/2019",interest:"24"}),
({date:"03/2019",interest:"40.8"}),
({date:"04/2019",interest:"49.25"}),
({date:"05/2019",interest:"62"}),
({date:"06/2019",interest:"81"}),
({date:"07/2019",interest:"87.5"}),
({date:"08/2019",interest:"64.25"}),
({date:"09/2019",interest:"42.8"}),
({date:"10/2019",interest:"30.75"}),
({date:"11/2019",interest:"25"}),
({date:"12/2019",interest:"27.2"}),
]
Insert cell
dateConverter = d3.timeParse("%m/%Y")
Insert cell
data = iceCream.map((d,i) => ({date:dateConverter(d.date),interest:+d.interest}) )
Insert cell
Insert cell
width = 600
Insert cell
height = 300
Insert cell
margin = ({top: 30, right: 40, bottom: 40, left: 50})
Insert cell
Insert cell
d3 = require('d3')
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more