{
let target = DOM.element('div')
let data = []
for (let i = 1; i <= curveStitching; i += 1) {
data.push({
fn: 'a + (a * x) / (a - 11)',
nSamples: 20,
graphType: 'polyline',
color: '#000080',
scope: { a: i }
})
}
let options = {
target,
yAxis: { domain: [-2, 100] },
xAxis: { domain: [-2, 100] },
data
}
functionPlot(options)
return target
}