venkatesh@358 Posted May 22, 2013 Report Posted May 22, 2013 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. Quote
AndreG Posted May 22, 2013 Report Posted May 22, 2013 Hello Venkatesh, What version of the jars are you using? Quote
venkatesh@358 Posted May 23, 2013 Author Report Posted May 23, 2013 Hi AndreG, I'm using the below jars. chartfx.gauge.design.jar chartfx.gauge.jar chartfx70.server.cfx6wrapper.jar chartfx70.server.design.jar chartfx70.server.jar chartfx70.server.maps.jar chartfx70.server.statistical.jar chartfx70.server.variablebars.jar Quote
AndreG Posted May 23, 2013 Report Posted May 23, 2013 To figure out the version of the jar you are using, please run: java -jar chartfx70.server.jar -version Quote
venkatesh@358 Posted May 23, 2013 Author Report Posted May 23, 2013 Hi AndreG, We are using chart FX 7. we have tried this command java -jar chartfx70.server.jar -version but we are getting this Error: Unable to access jarfile chartfx70.server.jar. Quote
AndreG Posted May 23, 2013 Report Posted May 23, 2013 Since I cannot reproduce the issue, I would recommend that you try with the latest version of the product. You can download it from www.mysoftwarefx.com Quote
venkatesh@358 Posted May 24, 2013 Author Report Posted May 24, 2013 Hi AndreG, I'm getting the issue when the two charts (Area & line charts) are displayed side by side. If you even tried it in the same way,can you please send me the snapshot of it. Quote
AndreG Posted May 24, 2013 Report Posted May 24, 2013 Can you please try using the attached sample? Quote
venkatesh@358 Posted May 28, 2013 Author Report Posted May 28, 2013 sorry andre, I'm unable to access the file.when I'm trying to download its failing. Quote
AndreG Posted May 28, 2013 Report Posted May 28, 2013 <%@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> Quote
venkatesh@358 Posted May 29, 2013 Author Report Posted May 29, 2013 AndreG, Please add the below line to the code and see the toolbar options doesn't works. chart1.getToolBar().setVisible(true); Quote
AndreG Posted June 3, 2013 Report Posted June 3, 2013 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> Quote
Recommended Posts
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.