From 7ce67cd070bea6c5599c57502fb60fd695eb5d11 Mon Sep 17 00:00:00 2001 From: Nathan Haug <nate@lullabot.com> Date: Mon, 17 Mar 2014 22:30:47 -0700 Subject: [PATCH] Issue #2202425 by bryanlburkholder and quicksketch: Support for window resizing event in Google Charts. --- modules/charts_google/charts_google.js | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/modules/charts_google/charts_google.js b/modules/charts_google/charts_google.js index febba1d..bb74ba5 100644 --- a/modules/charts_google/charts_google.js +++ b/modules/charts_google/charts_google.js @@ -12,6 +12,20 @@ Drupal.behaviors.chartsGoogle.attach = function(context, settings) { google.load('visualization', '1', { callback: renderCharts }); } + // Redraw charts on window resize. + var debounce; + $(window).resize(function() { + clearTimeout(debounce); + debounce = setTimeout(function() { + $('.charts-google').each(function() { + var wrap = $(this).data('chartsGoogleWrapper'); + if (wrap) { + wrap.draw(this); + } + }); + }, 75); + }); + function renderCharts() { $('.charts-google').once('charts-google', function() { if ($(this).attr('data-chart')) { @@ -84,6 +98,7 @@ Drupal.behaviors.chartsGoogle.attach = function(context, settings) { } wrap.draw(this); + $(this).data('chartsGoogleWrapper', wrap); } }); } -- GitLab