Resize chart on resize browser

Hi,

Is there a way to make the chart resize as you resize the browser? Instead of refreshing the page to get the new size.

I have my chart’s width set at 100%.

Thanks,
ann

  1. Set the size to 100% x 100%
  2. In Dashboard -> Advanced your code will look like this:

var handlers = {}; handlers.preRender = function(config, logger, processor, el) { logger.debug('Configuration: ', config); $(window).resize(function(){ el.data("kendoChart").redraw(); }); return true; }