bhavyait

Members
  • Content count

    7
  • Joined

  • Last visited

Posts posted by bhavyait


  1. Thanks our client did the upgrade and now its working.

     

     

     

    i have one more query

     

    
    function setValue(objFlash, intValue){
    
           //This function sets the updated value of the chart.
    
           //Get a reference to the movie
    
           var FCObject=getObject(objFlash);
    
           FCObject.SetVariable("_root.bgColor","666666");
    
           FCObject.SetVariable("_root.baseFontColor","ddeeff");
    
           FCObject.SetVariable("_root.bgAlpha","100");
    
           //Go to the required frame
    
           FCObject.TGotoLabel("/", "NewDataHandler"); 
    
       }
    
    

     

     

     

    i am trying this to change colors based on user switching theme but its not working?

     

    Is it possible to do like this to a real time dynamiclly updating charts.


  2. Hi,

     

     

     

    We are developing a dynamic real time dashboard and our requirement is to support 5 users with 16 chart each.

     

     

     

    We have developed it and everythings working fine. We are using Fusiongadgets latest upgraded version.

     

     

     

    Once we keep running this for 12-14 hrs we get adobe message saying "Script is taking tool long..........".

     

     

     

    Do you have any option in charts to reduce memory footprint as time progressses or do you have any pointers on how to tackle this issue?


  3. Hi,

     

    We have been using FusionCharts instrumentation suite. As a change we are removing use of "dataStreamURL=" and trying to update data using javascript function.

     

     

     

    When i amtrying to update FI2_RT_Column type the values get displayed one over another. That is columns are getting compeletely overlapped.i Can only see single column which is updating with every ajax call.

     

    Same logic works with updating FI2_RT_Line and FI2_RT_StkArea types.

     

     

     

    
    function updateChartData(responsexml){
    
    setValue("id", "&name="+currentTime+"&value="+value);
    
    
    
    }
    
    
    
    function getObject(objectName) {
    
    	 if (navigator.appName.indexOf ("Microsoft") !=-1) {
    
    		 return window[objectName]
    
    	} else {
    
    		 return document.embeds[objectName];
    
    	}
    
    }
    
    
    
    	  function setValue(objFlash, intValue){
    
    		    //This function sets the updated value of the chart.
    
    		    //Get a reference to the movie
    
    		    var FCObject=getObject(objFlash);
    
    		    //Set the data
    
    		    FCObject.SetVariable("_root.Value",intValue);
    
    		    //Go to the required frame
    
    		    FCObject.TGotoLabel("/", "NewDataHandler"); 
    
    		}