<div dir="ltr"><div><span style="font-size:12.8px">dear list,</span><br></div><div><span style="font-size:12.8px"><br></span></div><div>I'm trying to do a time-frequency plot with ft_topoplotTFR including first an average across all conditions followed by specific conditions. I want to highlight my sensors of interest for the first topoplot (the average across all conditions), and I'm running in a rather annoying issue. When highlighting the sensors the topoplot is slightly shrunk relative to the other topoplots,</div><div><br></div><div>Has anybody run into this problem and find a workaround?</div><div><br></div><div>Thanks for any hints,</div><div><br></div><div>Jose</div><div><br></div><div>A snippet of my code is below,<br></div><div><br></div><div>%%%</div><div><br></div><div>    cfg = [ ];</div><div>    cfg.baseline = baselinePeriod;</div><div>    cfg.baselinetype = baselineType;</div><div>    cfg.xlim = TOI;</div><div>    cfg.ylim = YLimsFreq;</div><div>    cfg.zlim = ZLimsPower;</div><div>    cfg.marker = 'off';</div><div>    cfg.layout = 'biosemi64.lay';</div><div>    cfg.comment = 'no';</div><div>    cfg.interactive = 'no';</div><div>    % highlight</div><div>    cfg.highlight = 'on';</div><div>    cfg.highlightchannel = chan2use{i_chanSel};</div><div>    cfg.highlightcolor = [0 0 0];</div><div>    cfg.highlightsymbol = '.';</div><div>    cfg.highlightsize = 12;</div><div><br></div><div>    subplot(2,4,5); ft_topoplotTFR(cfg, datAll); colormap jet</div><div>    </div><div>    cfg = [ ];</div><div>    cfg.baseline = baselinePeriod;</div><div>    cfg.baselinetype = baselineType;</div><div>    cfg.xlim = TOI;</div><div>    cfg.ylim = YLimsFreq;</div><div>    cfg.zlim = ZLimsPower;</div><div>    cfg.marker = 'off';</div><div>    cfg.layout = 'biosemi64.lay';</div><div>    cfg.comment = 'no';</div><div>    cfg.interactive = 'no';</div><div>    subplot(2,4,6); ft_topoplotTFR(cfg, datCongr); colormap jet</div><div>    subplot(2,4,7); ft_topoplotTFR(cfg, datIncong); colormap jet</div><div>    subplot(2,4,8); ft_topoplotTFR(cfg, datNeutral); colormap jet</div><div><br></div><div>%%%</div></div>