I am drawing graphs on canvases which have large unequal widths. Is it possible for each canvas to have its own scrollbar? I tried to put all the canvases in one div and spe
Specify the total width of the canvas then wrap it in a div. Set the div to overflow: scroll
and give that the 500px width. You should then have scrollbars allowing you to scroll and see the hidden parts of the canvas. Repeat this for all of the canvases.
<div style="max-height: 256px;max-width:256px;overflow: scroll;">
<canvas width="512px" height="512px"></canvas>
</div>