You can check mobile-friendliness of a webpage here =
https://search.google.com/search-console/inspect/mobile-usability
It gives me the error - Clickable elements too close together.
I'm sure that it denotes the 'selection of a row' by clicking it.
So, now I want to disable it.
Here is my code
[image: application/x-httpd-php]
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Title goes Here</title>
<meta name="description" content="Description goes here.">
<meta name="keywords" content="keyword">
<link rel="stylesheet" href="//www.example.com/tablechart.css">
<script type="text/javascript"
src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript">
google.charts.load('current', {'packages':['table']});
google.charts.setOnLoadCallback(drawTable);
function drawTable() {
var data = new google.visualization.DataTable();
data.addColumn('number', 'Number ⇕');
data.addColumn('string', 'Name');
data.addRows([
[1, 'Name 1'],
[2, 'Name 2'],
[3, 'Name 3'],
]);
var table = new
google.visualization.Table(document.getElementById('table_div'));
table.draw(data, {showRowNumber: false, width: '100%', height: '480'});
}
</script>
</head>
<body>
<h1>Heading</h1>
<p>Some text here...</p>
<script type="text/javascript"
src="https://www.gstatic.com/charts/loader.js"></script>
<div id="table_div"></div>
</body>
</html>
--
You received this message because you are subscribed to the Google Groups
"Google Visualization API" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-visualization-api.
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-visualization-api/c84afa70-ca92-4be1-833f-f5c279508d50%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.