вы можете использовать html5 с html волхвами c вот так:
%%html
<canvas id="canvas" width="400" height="200"></canvas>
<script>
var canvas = document.getElementById('canvas');
if (canvas.getContext)
{
//dots per inch
dpi=96
var context = canvas.getContext('2d');
context.beginPath();
context.moveTo(0,10);
context.lineTo(dpi,10);
context.stroke();
}
</script>