<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: UI issue with R plots in Administration &amp; Architecture</title>
    <link>https://community.databricks.com/t5/administration-architecture/ui-issue-with-r-plots/m-p/157357#M5272</link>
    <description>&lt;P&gt;I have the same issue.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.databricks.com/t5/data-engineering/r-plots-not-rendering/m-p/157353#M54536" target="_blank"&gt;https://community.databricks.com/t5/data-engineering/r-plots-not-rendering/m-p/157353#M54536&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 20 May 2026 20:29:27 GMT</pubDate>
    <dc:creator>plankton</dc:creator>
    <dc:date>2026-05-20T20:29:27Z</dc:date>
    <item>
      <title>UI issue with R plots</title>
      <link>https://community.databricks.com/t5/administration-architecture/ui-issue-with-r-plots/m-p/157272#M5268</link>
      <description>&lt;P&gt;Starting on May 6, our workspace in ap-southeast-2 stopped being able to display R plots correctly. This is specific to this workspace (we have 3), and specific to R plots, and is occurring for all users and clusters.&lt;/P&gt;&lt;P&gt;The figure itself can be resized using R code (it's not an issue of the plot dimensions) but the Databricks UI is only giving the plot a tiny sliver for display, so all we see is the top sliver of the figure.&lt;/P&gt;&lt;P&gt;Testing it further shows that other weird things are happening – displayed dataframes are sometimes overlaid over the figure display area, and sometimes figures don’t display at all (see attached).&lt;/P&gt;&lt;P&gt;How can I resolve this?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2026 18:06:09 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/ui-issue-with-r-plots/m-p/157272#M5268</guid>
      <dc:creator>lkahn</dc:creator>
      <dc:date>2026-05-19T18:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: UI issue with R plots</title>
      <link>https://community.databricks.com/t5/administration-architecture/ui-issue-with-r-plots/m-p/157357#M5272</link>
      <description>&lt;P&gt;I have the same issue.&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.databricks.com/t5/data-engineering/r-plots-not-rendering/m-p/157353#M54536" target="_blank"&gt;https://community.databricks.com/t5/data-engineering/r-plots-not-rendering/m-p/157353#M54536&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 May 2026 20:29:27 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/ui-issue-with-r-plots/m-p/157357#M5272</guid>
      <dc:creator>plankton</dc:creator>
      <dc:date>2026-05-20T20:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: UI issue with R plots</title>
      <link>https://community.databricks.com/t5/administration-architecture/ui-issue-with-r-plots/m-p/157426#M5275</link>
      <description>&lt;P&gt;This looks like a &lt;STRONG&gt;workspace-side notebook UI regression.&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;
&lt;H3&gt;Recommendation&lt;/H3&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Open a Databricks support ticket&lt;/STRONG&gt; and treat it as a &lt;STRONG&gt;Notebook UI / rendering regression&lt;/STRONG&gt; for that workspace. Include:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;STRONG&gt;Workspace ID&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Region:&lt;/STRONG&gt; &lt;CODE&gt;ap-southeast-2&lt;/CODE&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Start date:&lt;/STRONG&gt; &lt;STRONG&gt;May 6&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;A &lt;STRONG&gt;notebook URL&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;STRONG&gt;Screenshots&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;A &lt;STRONG&gt;HAR capture&lt;/STRONG&gt;&lt;/LI&gt;
&lt;LI&gt;The fact that it affects &lt;STRONG&gt;all users and clusters&lt;/STRONG&gt;, and only &lt;STRONG&gt;R plot output&lt;/STRONG&gt; in that workspace&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Ask support to check for a &lt;STRONG&gt;workspace-scoped frontend/webapp rollout or flag regression&lt;/STRONG&gt; in the notebook rendering path.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Use a workaround instead of inline R plot output&lt;/STRONG&gt; until support fixes it. Databricks R notebooks normally capture plots as &lt;STRONG&gt;inline PNGs&lt;/STRONG&gt;, and notebooks also support &lt;STRONG&gt;&lt;CODE&gt;displayHTML()&lt;/CODE&gt;&lt;/STRONG&gt; for custom HTML output.&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;PRE&gt;&lt;CODE class="language-r"&gt;library(ggplot2)

p &amp;lt;- ggplot(mtcars, aes(wt, mpg)) + geom_point()

dir.create("/dbfs/FileStore/tmp/rplots", recursive = TRUE, showWarnings = FALSE)
fname &amp;lt;- sprintf("plot-%s.png", as.integer(Sys.time()))
fullpath &amp;lt;- file.path("/dbfs/FileStore/tmp/rplots", fname)

ggsave(fullpath, plot = p, width = 10, height = 6, dpi = 150)

displayHTML(sprintf(
  "&amp;lt;img src='/files/tmp/rplots/%s' style='max-width:100%%; height:auto;'/&amp;gt;",
  fname
))
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;OL start="3"&gt;
&lt;LI&gt;If you need an immediate operational workaround, &lt;STRONG&gt;run those R notebooks in one of your unaffected workspaces&lt;/STRONG&gt; until the workspace UI issue is fixed.&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Thu, 21 May 2026 16:31:04 GMT</pubDate>
      <guid>https://community.databricks.com/t5/administration-architecture/ui-issue-with-r-plots/m-p/157426#M5275</guid>
      <dc:creator>Lu_Wang_ENB_DBX</dc:creator>
      <dc:date>2026-05-21T16:31:04Z</dc:date>
    </item>
  </channel>
</rss>

