phantom
Members-
Content count
9 -
Joined
-
Last visited
About phantom
-
Rank
Forum Newbie
-
hi, How can i display the values inside the pie area.... 'showValuesInside' works fine for Bar Chart but not for Pie chart... Somebody pls help me in this............ thanks, Phantom
-
hi, I tried this. But not working. thanks, Phantom
-
I tried generating the chart as a 'td' element and then tried disabling the 'td' element. But it dint work. Can u suggest me the appropriate way to achieve this?
-
hi all, Is disabling charts possible in fusion charts?. We have a requirement where we have to generate 5 charts(using fusion charts) in the same page. At any point of time only one graph shud be highlighted whereas all the others shud be disabled. Is this possible? TIA, Phantom
-
hi, i solved the problem. The problem is in the way in which i gave the path of the file. After changing from <script type="text/javascript" src="FusionCharts/FusionCharts.js"></script> to < script type="text/javascript" src="../FusionCharts/FusionCharts.js"></script>and < fc:render chartId="#{acctSummbean.chartId}" filename="FusionCharts/FCF_Pie3D.swf" width="#{acctSummbean.width}" height="#{acctSummbean.height}" xml="#{acctSummbean.xml}"></fc:render>to < fc:render chartId="#{acctSummbean.chartId}" filename="../FusionCharts/FCF_Pie3D.swf" width="#{acctSummbean.width}" height="#{acctSummbean.height}" xml="#{acctSummbean.xml}"></fc:render> , it worked well in JSF.Cheers, Phantom
-
hi, Is it possible to generate Slider scales using Fusion Charts. thanks, Phantom
-
hi, We are employing Fusion charts in our application. I have FusionCharts in my webcontent folder and jar file in my lib folder. FusionCharts.js is there in my FusionCharts.js folder. I have these two lines in my page <script type="text/javascript" src="FusionCharts/FusionCharts.js"></script> < fc:render chartId="#{acctSummbean.chartId}" filename="../FusionCharts/FCF_Pie3D.swf" width="#{acctSummbean.width}" height="#{acctSummbean.height}" xml="#{acctSummbean.xml}"></fc:render>.In JSP, this works fine. But when i did this in JSF(Trinidad), it shows JS error 'FusionCharts' is undefined. Am i doing something wrong here? Thanks, Phantom
-
Fusion Charts intergration with JSF
phantom replied to srividya_sharma's topic in FusionCharts and JSP
hi, When i tried deploying this in my server, i got the error mentioned below, javax.servlet.ServletException: java.lang.UnsupportedClassVersionError: Bad version number in .class file org.apache.jasper.servlet.JspServlet.service(JspServlet.java:274) javax.servlet.http.HttpServlet.service(HttpServlet.java:803) com.sun.faces.context.ExternalContextImpl.dispatch(ExternalContextImpl.java:410) com.sun.faces.application.ViewHandlerImpl.executePageToBuildView(ViewHandlerImpl.java:473) com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:141) com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:109) com.sun.faces.lifecycle.Phase.doPhase(Phase.java:100) com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139) javax.faces.webapp.FacesServlet.service(FacesServlet.java:266) I am using Tomcat 6.0 , JRE6. Is there any problem related to the version of Java i m using here? thanks, Phantom -
hi, i have a requirement wherein i must show 4 charts(eg. pie chart) in parallel. In my page, the graphs will be like GRAPH A GRAPH B GRAPH C GRAPH D Based upon my form bean value, i should show only one graph as enabled while the others should be disabled. Is this possible? Thanks, Phantom