Change Dashboard Size height/width at runtime

Is it possible to change the Dashboard Size (height, width) at runtime (on render handler)?

Hello @gabrieledelgiovine,

You can set it in Dashboard tab >> Advanced with the code:

var handlers = {};
handlers.preRender = function(config, logger) {
  config.chartArea = {};
  config.chartArea.height = 1000;
  logger.debug('Configuration: ', config);
  return true;
}