I have tried something similar, and as far as I'm aware, you can't do
it with the charts API. There is another way if you're willing to get
your hands dirty, though: make an image of the horizontal line, and
append it to the chart's div after the chart has been drawn. You'll
need to experiment to get the placement right, but it's not that
hard. It works something like this:
function appendImage(div, top, left){
var img;
img = document.createElement("img");
img.src = "path/to/image/file.ext";
img.style.position = "absolute";
img.style.top = top + "px";
img.style.left = left + "px";
div.appendChild(img);
}
function drawChart(){
...
chart.draw(data, options);
var div = document.getElementById(
chart.id);
var top = *distance from top of chart in pixels*;
var left = *distance from left edge of chart in pixels*;
appendImage(div, top, left);