Gracias por responder.
No se que estoy haciendo mal pero no me esta funcionando, aqui dejo el codigo para ver si me puedes orientar.
css
.path_bar svg > g:nth-of-type(2) > g:nth-of-type(1) > g:nth-of-type(2) > g
{
cursor: pointer
}
contenedor
<div class="path_bar" id="Chart_divAdministracion"></div>
javascript
<script type="text/javascript">
/*********************************************GENERAMOS LA GRAFICA******************************************************/
drawChartR();
function drawChartR() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Mes');
data.addColumn('number', 'Ingresos');
data.addRows([
['Enero',50000000],
['Febrero',40000000],
]);
// Set chart options
var options = {'title':'Ingresos Admin. Enero y febrero $90000000',
'width':400,
'height':300,
'min':0};
var chartR = new google.visualization.ColumnChart(document.getElementById('Chart_divAdministracion'));
chartR.draw(data, options);
}
/*****************************************FIN GRAFICA*****************************************************************/
</script>
lo esoty porbando en mozilla