I´m working drawing querys from Google Analitycs pretty good, but when the query is with Filters not draw nothing.
<html>
<head>
<title>Solicitudes:</title>
<!--Load the AJAX API-->
<script type="text/javascript"
</script>
<!-- Visualization -->
<script type="text/javascript">
google.setOnLoadCallback(drawVisualization);
function drawVisualization() {
var browserWrapper = new google.visualization.ChartWrapper({
// Example Browser Share Query
"containerId": "browser",
// "query": 'SELECT * WHERE rt:PageTitle = Paso 2 - Proceso de Compra - LAN.com'
"refreshInterval": 1,
"chartType": "PieChart",
"options": {
"showRowNumber" : true,
"width": 630,
"height": 440,
"is3D": true,
"title": ""
}
});
browserWrapper.draw();
}
</script>
</head>
<body>
<h1>Solicitudes:</h1>
<div id="browser" style="margin:auto;width:630px;"></div>
<div id="country" style="margin:auto;width:630px;"></div>
</body>
</html>