Skip to main content
Nintex Community Menu Bar
Question

Safari browser - charts rendered in monochrome with black background. But not always...

  • July 10, 2024
  • 3 replies
  • 0 views
  • Translate

Forum|alt.badge.img+10

Hello!

The charts on one of our Skuid pages are being rendered in monochrome, but only in Safari, not in Chrome (not tried other browsers). Also, this is not happening for all our pages.

Lastly, there’s no custom CSS, and swapping themes doesn’t fix the issue…

I’ve tried seeing if there’s a CSS culprit using the developer console but can’t seem to find anything. There are a bunch of CSS errors in the console for Safari, but that’s true of the other pages where there is no issue too…

Not sure what to try next…

Cheers!

Louis


Did this topic help you find an answer to your question?

3 replies

Forum|alt.badge.img+6
  • Nintex Employee
  • 401 replies
  • July 10, 2024

Hi, Louis. This is a known bug in Banzai Update 7. Any charts that already had custom colors should still be working, but any where you didn’t specify colors are going to be problematic. We’ve already started working on a fix, but in the meantime, there are two potential workarounds:

  1. Give all your Charts/Geocharts colors
  2. Use a Before Render Snippet like the following to clear out any color properties Skuid sets and fall back on Highcharts defaults:

(function(skuid){ var $ = skuid.$; skuid.snippet.register('clearChartColors',function(chartObj){ if (chartObj.colors !== undefined) delete chartObj.colors; if (chartObj.chart && chartObj.chart.backgroundColor !== undefined) delete chartObj.chart.backgroundColor; // Clear Geochart specific color properties if (chartObj.colorAxis !== undefined) delete chartObj.colorAxis; if (chartObj.plotOptions && chartObj.plotOptions.map !== undefined) { var mapPlotOptions = chartObj.plotOptions.map; if (mapPlotOptions.nullColor !== undefined) delete mapPlotOptions.nullColor; if (mapPlotOptions.states && mapPlotOptions.states.hover && mapPlotOptions.states.hover.color !== undefined) delete mapPlotOptions.states.hover.color; } }); })(skuid);
Translate

Forum|alt.badge.img+10

Thanks buddy, that fixed it. Cheers!

Translate

Forum|alt.badge.img+6
  • Nintex Employee
  • 401 replies
  • July 10, 2024

This issue has been resolved in Banzai Update 8, available on the Skuid Releases page.

Translate

Reply


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie Settings