If you don't need a very sophisticated graph you could draw a simple bar chart with some simple HTML. I've seen UI designers make this technique look really impressive.
The upside is that you don't need an additional library or worry about performance or page weight.
As a simple example of what I mean:
<html>
<body>
<div width="100%">
<div style="float:left; width:70px">Jan</div>
<div style="background: #0A0; width: 300px; margin-left:70px" >$300</div>
</div>
<div width="100%">
<div style="float:left; width:70px">Feb</div>
<div style="background: #A00; width: 122px; margin-left:70px" >$122</div>
</div>
<div width="100%">
<div style="float:left; width:70px">Mar</div>
<div style="background: #00A; width: 421px; margin-left:70px" >$421</div>
</div>
<div width="100%">
<div style="float:left; width:70px">Apr</div>
<div style="background: #0AA; width: 17px; margin-left:70px" >$17</div>
</div>
</body>
</html>