DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: API

Google Charts – visualize data on your website

Share

Google charts provides a better way to visualize website data on your website. The chart gallery provides a very large number of ready to use chart types from simple line charts to hierarchical tree maps.

To integrate Google Charts you need to embed JavaScript in your webpage.

The process is very simple. Just load Google Chart libraries, list data on the chart, customize your chart options and finally create a object with the id you choose. At last, in your webpage, create a <div> with that id and display the Google Chart with your mentioned data.

Google Chart types:

  • Pie Chart
  • Line Chart
  • Column Chart
  • Area Chart
  • Tree Map
  • Controls and Dashboards

Example:

<script type=”text/javascript” src=”http://code.jquery.com/jquery-1.8.3.min.js”></script>

<script type=”text/javascript” src=”https://www.google.com/jsapi”></script>

<script type=”text/javascript”>

google.load(“visualization”, “1”, {packages:[“corechart”]}); google.setOnLoadCallback(drawChartPie); function drawChartPie() {

var row = $.parseJSON(‘{“0”:{“title”:”PHP”,”count”:”2″},”1″:{“title”:”JQUERY”,”count”:”4″},”2″:{“title”:”HTML”,”count”:”3″},”3″:{“title”:”CSS”,”count”:”2″},”total”:4}’);

var data = new google.visualization.DataTable();

data.addColumn(‘string’, ”);

data.addColumn(‘number’, ”);

data.addRows(row.total);

$.each(row, function(index, val) {

$.each(val, function(key, value) {

if(key == ‘title’) {

data.setValue(parseInt(index), 0, value +’ (‘+ row[index].count +’)’ );

}

if(key == ‘count’) {

data.setValue(parseInt(index), 1, parseInt(value));

}

});

});

var options = { title: ‘Google Chart’, colors: [‘#e0440e’, ‘#e6693e’, ‘#ec8f6e’, ‘#f3b49f’, ‘#f6c7b6’], is3D: false, height:500, width:500 };

var chart = new google.visualization.PieChart(document.getElementById(‘chart_div’)); chart.draw(data, options);

}

</script>

<div id=”chart_div” style=”width:50%;”></div>

Ready to create your first Google Chart? Visit the quickstart.

Namaste UI (Author)

Namaste UI collaborates closely with clients to develop tailored guest posting strategies that align with their unique goals and target audiences. Their commitment to delivering high-quality, niche-specific content ensures that each guest post not only meets but exceeds the expectations of both clients and the hosting platforms. Connect with us on social media for the latest updates on guest posting trends, outreach strategies, and digital marketing tips. For any types of guest posting services, contact us on info[at]namasteui.com.

Published by
Namaste UI (Author)

Recent Posts

Your Complete Guide to the 461 Visa: Building a Life in Australia with Your New Zealand Partner

People usually stumble onto the 461 visa when they realise there’s no simple way to…

22 hours ago

Why Roarbank Is Transforming Everyday Banking in India

In today’s digital era, people look for convenience, transparency, and genuine rewards from their financial…

1 day ago

Quality with Quantity: Importing LED Lights Can Save You Big Bucks

If you are planning to start a lighting business and looking for a supplier of…

2 days ago

11 Reasons Why Avoiding Plagiarism is Necessary for SEO and content marketing

If you are a copywriter or a content marketer, you will second my statement that…

5 days ago

6 Common Injuries After a Motorcycle Accident

Motorcycle accidents often lead to severe injuries because riders have minimal protection compared to drivers…

1 week ago

How Automation And SEO Can Improve Customer Experience

No business owner starts his or her business with the hope of making losses. Everyone…

1 week ago