Home › Forums › ACF PRO › Google Graph › Reply To: Google Graph
You would need to get the values of the ACF fields and set those values in the script. Here is a simple example using part of the snippet from the link you provided
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Task', '<?php the_field('hours_per_day); ?>'],
['Work', <?php the_field('work')],
// etc....
]);
var options = {
title: '<?php the_field('title'); ?>'
};
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.