Inline preview of figures gets cropped

I have some fairly large figures in my R Markdown document. When I run a chunk, the figures get cropped in the preview pane below the chunk. I cannot find any way to increase the size of this preview pane or to scroll to see the whole figure.

My YAML header is

---
title: "xx"
author: "xx"
date: "`r format(Sys.time(), '%d %B, %Y')`"
output:
  html_document:
    df_print: paged
    toc: true
    toc_depth: 3
    smooth_scroll: true
    number_sections: false
    theme: united
  word_document:
    reference_docx: reference.docx
---

<style type="text/css">
  .main-container {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
</style>

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.