Jooly

Members
  • Content count

    4
  • Joined

  • Last visited

Posts posted by Jooly


  1. greetings!

     

     

     

    base on my case it seems that Pie3d cannot be rendered if there are no values supplied to it and says no data to display. is there any way to still display it if there are no data retrieved juist like the line, column, etc.... here are the XML codes

     

     

     

    ChartType is: FusionCharts/Pie3D.swf

     

     

     

     

     

     

     

     

     

    ChartType is: FusionCharts/Line.swf

     

     

     

     

     

     

     

     

     

     

     

    -Jupiter


  2. Hi Arindam,

     

     

     

    yes it works when it is placed on any folder other than WEB-INF.

     

    String chartCode= createChart("FusionCharts/Column3D.swf", "Data.xml", "", "myFirst", 600, 300, false, false);

     

     

     

    i also tried to create subfolders:

     

    String chartCode= createChart("FusionCharts/Column3D.swf", "charts/xml/Data.xml", "", "myFirst", 600, 300, false, false);

     

     

     

    the sole reason why i want to put it under than WEB-INF is to ensure security, since i dont want my jsp/xml file to be accessed by anonymous users.

     

     

     

    so is there any way to specify the file

     

    String chartCode= createChart("FusionCharts/Column3D.swf", "WEB-INF/xml/Data.xml", "", "myFirst", 600, 300, false, false);

     

     

     

    an example would be nice:D


  3. hi, is there any way to tell my jsp page to locate the data.xml under the web-inf folder? what i did is:

     

     

     

    String chartHTMLCode=FusionChartsCreator.createChartHTML("FusionCharts/Column3D.swf", "/WEB-INF/jsp/test.jsp", "", "myFirst", 600, 300,false);

     

     

     

    but since accessing directly in WEB-INF is not possible. any suggestions on how can i pass the data.xml to the spring controller