chart = {
const target = html`
<style>
.chart {
font-family: sans-serif;
}
.chart-footer {
font-style: italic;
font-size: 10pt;
color: #aaa;
}
</style>
<div class="chart">
<h2>Example insight</h2>
<div>A short description of the chart. Usually what's on the y axis</div>
<div id="chart"></div>
<div class="chart-footer">By <a href="https://johnguerra.co">John Alexis Guerra Gómez</a>.
<br>
<strong>Source</strong>: <a href="">My data source</a>
</div>
</div>`;
const
width = 500,
height = 500,
svg = d3.select(target).select("#chart")
.append("svg")
.attr("width", width)
.attr("height", height);
const margin = ({top: 50, right: 30, bottom: 30, left: 40}),
iwidth = width - margin.left - margin.right,
iheight = height - margin.top - margin.bottom;
const gDrawing = svg.append("g")
.attr("transform", `translate(${margin.left}, ${margin.top})`);
const x = d3.scaleLinear()
.domain([0, 1])
.range([0, iwidth]);
const y = d3.scaleLinear()
.domain([0, 1])
.range([iheight, 0]);
const xAxis = svg => svg
.attr("transform", `translate(0,${iheight})`)
.call(d3.axisBottom(x));
const yAxis = svg => svg
.call(d3.axisLeft(y));
gDrawing.append("g")
.call(xAxis)
.append("text")
.style("fill", "black")
.style("font-size", "12pt")
.text("xAxis")
.style("text-anchor", "end")
.attr("transform", `translate(${iwidth}, ${30})`);
gDrawing.append("g")
.call(yAxis)
.append("text")
.style("fill", "black")
.style("font-size", "12pt")
.attr("transform", `translate(${0}, -10)`)
.text("yAxis");
return target;
}