drawChart = ele => {
const svg = ele
.append("svg")
.style("height", chart_height + "px")
.style("width", chart_width + "px");
svg.append("g").call(xAxis);
svg.append("g").call(yAxis);
svg.append('text').call(xLabel);
svg.append('text').call(chartTitle);
svg.append('text').call(yLabel);
svg
.selectAll("circle")
.data(d => d.values)
.join("circle")
.call(drawPoint);
}