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
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
var handlers = {};
handlers.preRender = function(config, logger, processor, el) {
logger.debug('Configuration: ', config);
$(window).resize(function(){
el.data("kendoChart").redraw();
});
return true;
}