durga1973

Members
  • Content count

    8
  • Joined

  • Last visited

About durga1973

  • Rank
    Forum Newbie
  1. We want to block the user until the chanrt is loaded/render how can we achive that. Do we have any function in Fusion Chart or we have to do it using Javascript base don evenets ? Thanks, Durga
  2. Fusion Charts and Flex

    How to integrate fusion charts using Flex, please let me know where can i download the swc (Fusiocharts Flex api). Thanks, Durga
  3. Update Chart dataXML

    i got it from the documentation. Thanks, Durga
  4. Update Chart dataXML

    How to modify the the Chart data, we have an application which plots MSLine charts, when user selects a button we want to update the MSLine chart with latest data. How to do it, reloading or recreating the chart again is the only approach ? Thanks, Durga
  5. Fusion Chart MSLine charts not displaying tool tip

    I am using latest version and I am using Openlaszlo to render this chart but in that it is not displaying i am initializing the chart as follows var url = "lib/MSLine.swf?dataXML="+chartData+"&chartWidth=600&chartHeight=500&mode=laszlo"; this.setSource(url); Thanks, Durga
  6. Fusion Chart MSLine charts not displaying tool tip

    Here is the XML/JSON data <chart caption='Last one hour Readings' xAxisName='Time' yAxisName='Power' showValues='0' showToolTip='1' labelDisplay='Rotate' slantLabels='1' defaultNumberScale='W'><categories> <category label='0:10'/> <category label='0:5'/> <category label='0:0'/></categories><dataset seriesName='Platform'><set value='248' /><set value='196' /><set value='49' /></dataset><dataset seriesName='CPU'><set value='176' /><set value='223' /><set value='292' /></dataset><dataset seriesName='Memory'><set value='277' /><set value='30' /><set value='124' /></dataset></chart> Thanks, Durga
  7. I am using Fusion chart trail version, for the MSLine charts eventhough i set the showToolTip='1' it is not displaying the tool tip. Below is my chart details <chart caption='"+caption+"' xAxisName='Time' yAxisName='Power' showValues='0' showToolTip='1' labelDisplay='Rotate' slantLabels='1' defaultNumberScale='W'> For free trail won't the tooltip support is present or there is an issue in my chart declaration ? Thanks, Durga
  8. Which Charts to Use

    Hi, We are planning to creat charts using some dynamic data, The data pattern is as follwos We have a data for one hour, so planning to show on X-axis with lables 0 min, 5 mins ... 55 mins On Y-axis we want to show the amounr of consumttion like 100, 200 .... 500 The issues we don't have a data exactly at 5 min or 10 mins the data entry can be between 5 to 10 mins <consumption> <person time="10:05" amount="150" /> <person time="10:08" amount="150" /> <person time="10:13" amount="150" /> <person time="10:25" amount="150" /> ..... </consumtion> We want the chart to show the value at 8 mins from the above example. We want to use Multi Series Line charts. Please help me out which charts can be used and how to plot it Thanks, Durga