Jump to content
Software FX Community

ChartFX 7 + IE8


CyberWindSoftWorks

Recommended Posts

Hi,

 

I have a site we have had in production for several years that uses ChartFX.  Our clients all use the .NET rendering format.

When we run the site under IE8 we cannot get the chart to appear in the .NET rendering format, all we get is:

[Chart FX: .NET Active client requires Internet Explorer and .NET Framework 2.0 or greater installed on the client computer.]

I updated the site to the latest version: 7.0.3306.26568 but that didn't fix anything.  I also tried running the page in compatibility mode.

Thanks

 

Link to comment
Share on other sites

 This message is tipically displayed when an application that used Chart FX is opened with a browser different from IE (i.e firefox) when rendered as .Net (ActiveX component). I tested Chart FX 7 with IE8 without a problem. So, does the client machine that is triying to browse the application has the MS Framework 2.0 installed? if is and the message stills on the IE8, please send an email to support@softwarefx[dot]com with an screenshot of the error and a screenshot of the Activex configured options of the IE8.

Link to comment
Share on other sites

  • 1 month later...

 I tested the following successfully on IE8:

Default2.aspx 

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>

<%@ Register Assembly="ChartFX.WebForms" Namespace="ChartFX.WebForms" TagPrefix="chartfx7" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
  <title>Untitled Page</title>
</head>
<body style="background-color:Red">
  <form id="form1" runat="server">
  <div>
  <chartfx7:Chart ID="Chart1" runat="server" RenderFormat=".NET">
  </chartfx7:Chart>
  </div>
  </form>
</body>
</html>

 

Default.aspx

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
  <title>Untitled Page</title>
</head>
<body>
  <form id="form1" runat="server">
  <div>
  <iframe src="Default2.aspx" width="100%" height="300">

  </iframe>

  </div>
  </form>
</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...