shivmajji

Members
  • Content count

    7
  • Joined

  • Last visited

Posts posted by shivmajji


  1. Thanks a lot for the reply. well the problem with fusioncharts.lzx file is.. it uses a resource called blank.swf the comment is the following dummy resource to properly initialize a "movie ready" view.

     

     

     

    This works well in flash but, when we choose the runtime as DHTML it gives a compilation warning saying that resource not found, even if i have not changed a line of code and even when the resource is available.

     

     

     

    Well, we are now trying a work around using OpenLaszlo's HTML tag...

     

     

     

    http://weblog.openlaszlo.org/archives/2007/01/announcing-the-new-tag-for-dhtml

     

     

     

    We use this in the following way. Please refer attachment

     

     

     

    As you can see in the attached code we are using a JSP to render our charts which i think is not a good approach if we are using OpenLaszlo. We would definitely like to use the fusioncharts.lzx approach.

     

     

     

    I hope you can throw some light over the resource not found error related to blank.swf. Please let me know if you need any more details.

     

     

     

    Thanks & Regards,

    testCharts.lzx.txt


  2. Hi All,

     

     

     

    In our project we use OpenLaszlo as the user interface. we have been able to integrate fusion charts with openlaszlo flash runtime and they are pretty good. we could do that using the fusioncharts.lzx component provided by fusion charts. Now we want to integrate fusion charts with openlaszlo DHTML runtime. Is there a way of rendering the various charts which are flash files in DHTML. If anyone has done please let me know. We would really like to go with fusion charts for our dashboards but i could not find a clear way of integrating them with DHTML runtime in openlaszlo. Thanks in advance.

     

     

     

    Regards,

     

     

     

    Shiv


  3. Can anybody please help me out with this issue of caching? If its normal URL call i can append a random number. But i am integrating fusion charts with openlaszlo and i am using the following code to create a chart. 

    <fusioncharts id="fc1" autoload="false"
    strSWFName="Charts/Pie3D.swf"
    intChartWidth="350"
    intChartHeight="150" intChartStartX="0"
    intChartStartY="5" timetoload="1000"/>
    </view>
    

    I am providing the data to it via a Dataset. how can i prevent caching in this scenario. Help is appreciated.Thanks is advance..


  4. I integrated open laszlo and fusion charts for our application. The data to these fusion charts changes as per a search criteria. So every time the user clicks search, fusion charts should get loaded with the corresponding data. But, this is not happening it still displays the previous data and on subsequent click on the search button it displays the charts with the updated data. i.e. every second click on the search button refreshes the charts with the actual data. Where as It should be happening on every click.

    When i debugged it i found out that the data being given to the charts is the current. As per the search criteria but fusion charts still loads the cached data. Please let me know of any solution. Thanks in advance.


  5. How do i integrate fusion charts in openlaszlo. I tried passing data to the charts using url pointing to the xml location and it works fine. But, how can i make the charts access data from open laszlo dataset. I instantiate my charts in laszlo using the following but how do i pass the data to it dynamically from a dataset.

    <view name="health" width="50%" height="50%" clip="true" >

    <fusioncharts id="fc1"

    autoload="false"

    strSWFName="Charts/Pie3D.swf"

    intChartWidth="350"

    intChartHeight="150"

    intChartStartX="0"

    intChartStartY="5"

    timetoload="500"/>

    </view>

     

    help is appreciated. Thanks in advance.