Jump to content
Software FX Community

Toolbar options are not working in IE


venkatesh@358

Recommended Posts

Hi ,

We have created charts using Chart FX,when we are using the tool bar options provided by Chart FX in Internet Explorer for multiple charts(two charts displayed paralellly) they are not working but when we use them for single chart they are working fine.

When we tried it on other browsers like mozilla firefox and chrome, the toolbar options are working fine even for multiple charts,but the same when we try it on IE they are not working.

Can some one help me out in this.

Thanks,

Venkatesh.

Link to comment
Share on other sites

<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
  <head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <title>JSP Page</title>
  </head>
  <body>
<%
com.softwarefx.chartfx.server.ChartServer chart1 = new com.softwarefx.chartfx.server.ChartServer(pageContext, request, response);
chart1.setID("chart1");
chart1.setWidth(600);
chart1.setHeight(400);

chart1.setAsFirstChart();

chart1.renderControl();

com.softwarefx.chartfx.server.ChartServer chart2 = new com.softwarefx.chartfx.server.ChartServer(pageContext, request, response);
chart2.setID("chart2");
chart2.setWidth(600);
chart2.setHeight(400);
chart2.renderControl();

com.softwarefx.chartfx.server.ChartServer chart3 = new com.softwarefx.chartfx.server.ChartServer(pageContext, request, response);
chart3.setID("chart3");
chart3.setWidth(600);
chart3.setHeight(400);

chart3.setAsLastChart();

chart3.renderControl();
%>
  </body>
</html>

Link to comment
Share on other sites

Please make sure you have the following on your web.xml file:

  <filter>   <filter-name>ChartCallbackFilter</filter-name>   <filter-class>com.softwarefx.chartfx.server.servlets.ChartCallbackFilter</filter-class>   </filter>   <filter-mapping>   <filter-name>ChartCallbackFilter</filter-name>   <url-pattern>/*</url-pattern>   </filter-mapping>

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...