function plot(solution, opts = {}) {
let { actual = false } = opts;
let height = 0.6 * width;
let container = d3
.create('div')
.style('position', 'relative')
.style('width', `${width}px`)
.style('height', `${height}px`);
let graph = container
.append('div')
.style('position', 'absolute')
.style('width', `${width}px`)
.style('height', `${height}px`)
.style('background-color', 'white');
let target = graph.node();
let functionPlotData = [
{
points: solution,
fnType: 'points',
graphType: 'polyline'
},
{
points: solution,
fnType: 'points',
graphType: 'scatter'
}
];
if (actual) {
functionPlotData.unshift({ fn: actual });
}
console.log(functionPlotData);
let ymin = d3.min(solution.map(pt => pt[1]));
let ymax = d3.max(solution.map(pt => pt[1]));
functionPlot({
target: target,
width: width,
height: height,
xAxis: { domain: [solution[0][0], solution[solution.length - 1][0]] },
yAxis: { domain: [ymin, ymax] },
disableZoom: true,
data: functionPlotData
});
graph.selectAll('.origin').style('opacity', 0);
graph
.selectAll('circle')
.attr('r', 4)
.style('fill', 'black')
.style('stroke', 'black');
graph
.selectAll('.line-0')
.attr('stroke-width', 4)
.attr('stroke', 'red');
graph
.selectAll('.line-1')
.attr('stroke-width', 2)
.attr('stroke', 'green');
container
.append('div')
.style('position', 'absolute')
.style('width', `${width}px`)
.style('height', `${height}px`)
.style('top', '0px')
.style('left', '0px');
return container.node();
}