Formatando gráficos do Google programaticamente

Usando o código a seguir, como posso definir a formatação para que CurrencyValue1 e CurrencyValue2 sejam mostrados com um dólar (como valor da moeda) no gráfic

function drawChart() {
    var data = new google.visualization.DataTable();
    data.addColumn('date', 'Date');
    data.addColumn('number', 'CurrencyValue1');
    data.addColumn('number', 'CurrencyValue2');

    data.addRows(1);
    data.setValue(0, 0, new Date(2011, 8, 12));
    data.setValue(0, 1, 300.0000);
    data.setValue(0, 2, 759.1707);

    var chart = new google.visualization.LineChart(document.getElementById('chart_div'));

    chart.draw(data, { width: 660, height: 470, title: 'Heading', is3D: true, backgroundColor: '#f5f3e5' });
}

questionAnswers(3)

yourAnswerToTheQuestion