function svgHtmlByArr(data, width, height, color, strokeWidth) {
const maxValue = Math.max(...data);
const minValue = Math.min(...data);
const xStep = width / (data.length - 1);
let svg = `<svg width="${width}" height="${height}">`;
svg += `<polyline points="`;
data.forEach((value, index) => {
const y = ((value - minValue) / (maxValue - minValue)) * height;
const x = index * xStep;
svg += `${x},${height - y} `;
});
svg += `" style="fill:none;stroke:${color};stroke-width:${strokeWidth}" />`;
svg += '</svg>';
return svg
}
const svgHtml = svgHtmlByArr(arr, 90, 20, 'black', 0.6)
上一篇
JavaScript-计算两个数组之间的欧几里得距离
2023-06-20
下一篇
Caddy2-反向代理到其他端口
2023-06-16