Pallav

L1 Moderators
  • Content count

    2,385
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Pallav

  1. Drill Down Links

    When you're providing this link in the XML, make sure to URL Encode it so that it looks as under: <set ... link='http%3A%2F%2Fmydomain%2Ecom%2FSPAWeb%2FProbeApp%2FOneProbe%2E1%2EDay%2EHourly%2Ephp%3Fprbname%3D%24prbname%26day%3DDataFromClick%27' />
  2. Show tooltips for all series at once?

    I'm afraid this is not currently feasible with FusionCharts.
  3. DrillDown charts in powerpoint

    You can have them drill down to a web page - but not to other PowerPoint slides.
  4. Clicking ability in states areas

    It's available in demo version too. Please see www.fusioncharts.com/FusionCharts/PMDocs > Drill Down Maps.
  5. I've added this as a feature extension for future versions.
  6. Drad Node data

    Yes - the returned data basically contains the new position of nodes. No - you cannot create nodes/connectors without re-creating.
  7. You cannot do so in FusionCharts v2.3 - It's possible only in FusionCharts v3.
  8. Clicking ability in states areas

    Yes - you can do both of these: I want to show some more data in the tool tip on onmouseover event of the each states of the US map. I want to be able to click on the state and go to next page passing some ids and other values.
  9. FusionCharts is a set of Flash movies, and as kind of plugins, are rendered in a special way by the browsers (a method known as "windowed"), making them the topmost objects in a page. At this moment there's no way to display any kind of HTML element (tables, images, paragraphs, etc..) above plugins. <?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" /> Macromedia has a solution for Internet Explorer for Windows and all Mozilla-based browsers: To allow DHTML objects appear over a Flash movie just add this parameter: WMode=Transparent to the Flash <object> tag. It should look like this: <param name="WMode" value="Transparent"> In order to support Mozilla-based browsers and other browsers, such as Safari, you should also include the wmode parameter in the <embed> tag, like this: <embed wmode="transparent" .......></embed> If you're using FusionCharts.js (JavaScript class), you can use the attached JS file. FusionChartsWMode.zip
  10. This bug was already fixed in FusionCharts v3.0.2 - seems you're using an older version. Please re-download the evaluation.
  11. multiple graphs in powerpoint

    For once, can you try putting the XML file in the same folder as PPT and locally reference it - instead of the full URL?
  12. In each .fla file > Chart Scene > Actions Layer > Frame 1 > Actions, you'll have to add the following code just before the line containing "stop()": if (ExternalInterface.available && _registerWithJS && renderRegistered){ ExternalInterface.call("FC_Update", _DOMId); }
  13. Tooltip position bug

    What you might be doing is re-positioning the parent movie clip of the chart. Instead offset the chart in the parent movie clip (with no x/y shifting) using the X/Y offset parameters in the constructor function of the chart.
  14. Clicking ability in states areas

    If you're referring to US states, you can achieve the following level of drill down: World Map --> US Map --> 51 US States.
  15. tutorial to create this chart

    Try adding the following to <chart> element: <chart setAdaptiveSYMin="1"> This attribute lets you set whether the secondary y-axis lower limit would be 0 (in case of all positive values on chart) or should the y-axis lower limit adapt itself to a different figure based on values provided to the chart. Also, if you want to set your custom y-max/min for both axis, use the following attributes: PYAxisMaxValue - This attribute helps you explicitly set the upper limit of the primary y-axis. If you don't specify this value, it is automatically calculated by FusionCharts based on the data provided by you. PYAxisMinValue - This attribute helps you explicitly set the lower limit of the primary y-axis. If you don't specify this value, it is automatically calculated by FusionCharts based on the data provided by you. SYAxisMinValue - This attribute helps you explicitly set the lower limit of the secondary y-axis. If you don't specify this value, it is automatically calculated by FusionCharts based on the data provided by you. SYAxisMaxValue - This attribute helps you explicitly set the upper limit of the secondary y-axis. If you don't specify this value, it is automatically calculated by FusionCharts based on the data provided by you.
  16. CodeCharge Studio

    So, effectively before the FusionCharts.js is being included, the chart code is being invoked? In that case, can you try using the renderChart() (ASP Function) from FusionCharts.asp? That will make CCS think of the code as ASP - and this code outputs HTML code for the chart.
  17. multiple graphs in powerpoint

    Can you please let us know the exact URL you're putting for the Movie SWF (in both fields in the dialog box)?
  18. CodeCharge Studio

    Don, I've not understood this part, as I'm not familiar with CodeCharge Studio (though, I've a lot of experience in ASP). If you can please elaborate more on the process flow, I can help you with this.
  19. MS stacked bar chart

    I'm afraid we do not have such a chart, as of now.
  20. Instrumentation Suite v2 allows dynamic refresh of data (using dataStreamURL). However, you cannot update the entire XML from a URL. We're working on Instrumentation v3, which will support this.
  21. Auto Scroll

    I'm afraid it's not currently possible, as of now.
  22. The idea is that when the chart is loaded first time, only then you need to know that the chart has loaded and rendered. When updating the chart subsequently, you already know the event - because the event is triggered by you. However, if you still need FC_Updated function, I can tell you where to modify the .fla to call the same.
  23. SSGrid and links?

    I'm afraid it's not currently possible. An alternative would be to specify each set label (in XML for the grid) as HTML with links embedded.
  24. We request you to please see http://www.fusioncharts.com/FusionCharts/Docs/Contents/Flash_Rotated.html All these things are detailed in our documentation, and as such we request you to please go through documentation before posting here.
  25. tutorial to create this chart

    This code works fine. What is it that you want to do?