render_linechart = function(data, xAxis, yAxis, lineFunction, debug) {
const svg = d3.select(DOM.svg(width, height));
svg.append("rect")
.attr("width", "100%")
.attr("height", "100%")
.attr("fill", "#292D3E");
svg.append("g")
.call(xAxis);
svg.append("g")
.call(yAxis);
svg.append("path")
.datum(data)
.attr("fill", "none")
.attr("stroke", "#F08C8C")
.attr("stroke-width", 3)
.attr("stroke-linejoin", "round")
.attr("stroke-linecap", "round")
.attr("d", lineFunction)
svg.append("text")
.attr("class", "title")
.attr("font-size", "12px")
.attr("transform",
"translate(" + (width - margin.right) + " ," +
(margin.top + 10) + ")")
.style("text-anchor", "end")
.text("시간에 따른 #nomakeupchallenge 구글 트렌드 관심도");
return svg.node();
}