friction

Members
  • Content count

    13
  • Joined

  • Last visited

Posts posted by friction


  1. The chart is working properly now but i would like to know if the chart is able to repeat itself. An example is for 13/07/2010 a data in the chart has a period of 09:00:00 to 11:00:00. Is it able to repeat the period if i chose 15/07/2010? Provided a date period for it to repeat is set beforehand from 13/07/2010 to 16/07/2010??


  2. Thank you for the help. It was enlightening. I was wondering is there any way to change the text that is displayed on the SSGrid? I want it to display other words instead of those from the x-axis. Your help is highly appreciated. Thanks.:)


  3. Forgive me if this sounds stupid..but is this what you mean??

     

     

     

    script type="text/javascript"

     

    function ExportMyCharts()

     

    {

     

    var chartObject1 = new Array();

     

    var i=0;

     

    for(i=1; i<=chartObject1.length; i++)

     

    {

     

    chartObject1 = getChartFromId('<%=rwId%>');

     

    if( chartObject1.hasRendered() ) {chartObject1.exportChart({exportFormat:'PNG'});}

     

    }

     

    }

     

    /script


  4. Thank you for replying so fast. The snippets are:

     

    Random rdWidget = new Random();

     

     

     

    int intWidgetId = rdWidget.nextInt(1000) + 1;

     

    String rwId = Integer.toString(intWidgetId);

     

     

     

    ...

     

     

     

    [jsp:include page="../include/FusionChartsRenderer.jsp" flush="true" ]

     

    [ jsp:param name="chartSWF" value="../charts/Column3D.swf" / ]

     

    [ jsp:param name="strURL" value="" / ]

     

    [ jsp:param name="strXML" value="<%=strXML%>" / ]

     

    [ jsp:param name="chartId" value="<%=rwId%>" / ]

     

    [ jsp:param name="chartWidth" value="600" /]

     

    [ jsp:param name="chartHeight" value="500" / ]

     

    [ jsp:param name="debugMode" value="false" / ]

     

    [ jsp:param name="registerWithJS" value="true" / ]

     

    [/jsp:include]

     

     

     

    i would appreciate it if you would show me how to initiate export to save folder of the charts. Thank you in advance.:)