<?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 Cisco Security Suite/Rendering issues with charts in IE8 in All Apps and Add-ons</title>
    <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70152#M4358</link>
    <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I've noticed that the Cisco Security Suite app displays charts (bar, pie etc) with a black background on IE8 (compatibility mode or not), making the text and axes invisible.&lt;/P&gt;

&lt;P&gt;It's fine in chrome and Firefox so I'm sure it's an issue with IE8 not liking something in the CSS, but has anyone found a workaround? I tried commenting out the CSS section for the flash charts, but it doesn't seem to resolve it.&lt;/P&gt;

&lt;P&gt;The proper answer is of course "don't use IE8" but I can't help that at the moment. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Mon, 23 Sep 2013 09:34:53 GMT</pubDate>
    <dc:creator>Narj</dc:creator>
    <dc:date>2013-09-23T09:34:53Z</dc:date>
    <item>
      <title>Cisco Security Suite/Rendering issues with charts in IE8</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70152#M4358</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;

&lt;P&gt;I've noticed that the Cisco Security Suite app displays charts (bar, pie etc) with a black background on IE8 (compatibility mode or not), making the text and axes invisible.&lt;/P&gt;

&lt;P&gt;It's fine in chrome and Firefox so I'm sure it's an issue with IE8 not liking something in the CSS, but has anyone found a workaround? I tried commenting out the CSS section for the flash charts, but it doesn't seem to resolve it.&lt;/P&gt;

&lt;P&gt;The proper answer is of course "don't use IE8" but I can't help that at the moment. &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2013 09:34:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70152#M4358</guid>
      <dc:creator>Narj</dc:creator>
      <dc:date>2013-09-23T09:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Security Suite/Rendering issues with charts in IE8</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70153#M4359</link>
      <description>&lt;P&gt;Hrm well I went through the application.css, wiping out sections until it was blank and still no difference, so I'm assuming it's something to do with one of the images in use - maybe something to do with transparency or something... Firefox Inspect says the affected area is "rect" or SplunkModule.JSChart&lt;/P&gt;</description>
      <pubDate>Mon, 23 Sep 2013 12:49:09 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70153#M4359</guid>
      <dc:creator>Narj</dc:creator>
      <dc:date>2013-09-23T12:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Security Suite/Rendering issues with charts in IE8</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70154#M4360</link>
      <description>&lt;P&gt;JSChart is JavaScript-based. My guess is that there is an problem with the IE 8 browser and Javascript somewhere. You might also try running IE 8 in compatibility mode, if you can't update to another version.&lt;/P&gt;</description>
      <pubDate>Tue, 24 Sep 2013 00:40:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70154#M4360</guid>
      <dc:creator>lguinn2</dc:creator>
      <dc:date>2013-09-24T00:40:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco Security Suite/Rendering issues with charts in IE8</title>
      <link>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70155#M4361</link>
      <description>&lt;P&gt;I understood measures method.&lt;BR /&gt;
I make the following modifications in application.css of Cisco Security Suite app.&lt;/P&gt;

&lt;P&gt;application.css line 847&lt;/P&gt;

&lt;H2&gt;before&lt;/H2&gt;

&lt;HR /&gt;

&lt;PRE&gt;&lt;CODE&gt;.dashboardCell .FlashChart {
background-color: transparent;
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;

&lt;H2&gt;after&lt;/H2&gt;

&lt;HR /&gt;

&lt;PRE&gt;&lt;CODE&gt;.dashboardCell .FlashChart {
    background-color: transparent;
    background-color: ##FFF5F5; /*Measures displays charts (bar, pie etc) with a black background on IE8 before*/
}
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;HR /&gt;

&lt;P&gt;It is a problem of IE7/8 which occurs when this adds transmission handling of JS to transmission PNG.&lt;/P&gt;

&lt;P&gt;Reference (I am sorry in a Japanese site)&lt;BR /&gt;
&lt;A href="http://h2ham.seesaa.net/article/141330505.html"&gt;http://h2ham.seesaa.net/article/141330505.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 07 Nov 2013 06:28:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/All-Apps-and-Add-ons/Cisco-Security-Suite-Rendering-issues-with-charts-in-IE8/m-p/70155#M4361</guid>
      <dc:creator>kuehara</dc:creator>
      <dc:date>2013-11-07T06:28:33Z</dc:date>
    </item>
  </channel>
</rss>

