UNPKG

biojs-vis-seqlogo

Version:
9 lines (8 loc) 216 B
module.exports = function draw_border(context, y, width) { context.beginPath(); context.moveTo(0, y); context.lineTo(width, y); context.lineWidth = 1; context.strokeStyle = "#999999"; context.stroke(); }