phantom

Members
  • Content count

    9
  • Joined

  • Last visited

About phantom

  • Rank
    Forum Newbie
  1. 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
  2. Disabling charts

    hi, I tried this. But not working. thanks, Phantom
  3. Disabling charts

    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?
  4. 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
  5. 'FusionCharts' is undefined

    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
  6. Slider scale

    hi, Is it possible to generate Slider scales using Fusion Charts. thanks, Phantom
  7. 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
  8. Fusion Charts intergration with JSF

    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
  9. Disabling charts

    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