Pallav

L1 Moderators
  • Content count

    2,385
  • Joined

  • Last visited

  • Days Won

    11

Everything posted by Pallav

  1. Javasript for drill down charts.

    Can you post host your error page live on your server, so that we can debug?
  2. Scrollbar Position

    I'm afraid it's not directly possible. You'll have to edit the source code to attain this.
  3. Javasript for drill down charts.

    What error do you get when you run it?
  4. FC_2_3_Column3D.swf to Column3D.swf

    v3 Column 3D chart is fully backward compatible with v2.3 chart. What error do you get when you use v3 chart?
  5. Co. Flash Version Standard is pre-Flash 8

    FusionCharts v3 necessarily needs Flash Player 8 to run. Just saving it as previous version won't work. The only option for Flash Player 6 would be to use FusionCharts v2.3 - http://www.fusioncharts.com/FusionCharts23/
  6. Javascript Animation Kicker?

    I'm afraid it's not currently possible using FusionCharts.
  7. Multi Chart

    You can use MSColumnLine3D.swf instead of MSColumn3DLineDY.swf to show the y-axis values for only the primary axis.
  8. Stones and Pounds

    I'm afraid that's not possible in the current version.
  9. Using Version 3 Charts

    Can you pls try the debugging steps listed at http://www.fusioncharts.com/FusionCharts/Docs/Contents/Debug/Basic.html ?
  10. Different colors for 3D Column Chart?

    You seem to be using FusionCharts v2.3. In FusionCharts v3, we've added automatic color palettes.
  11. Decimal Places

    I'm afraid we do not have an option for this (unless you want to delve into the source code and modify it).
  12. Stones and Pounds

    Yes - the "Number Scaling" option in FusionCharts is precisely meant for this purpose. You may please read more on it at http://www.fusioncharts.com/FusionCharts/Docs/Contents/Number_Scaling.html Though we do not have an exact weight conversion example here, you can use the concepts to easily simulate the weight chart.
  13. We've released FusionCharts v3.0.3 with the following changes: New: Added Horizontal Bar 3D Chart, Stacked Horizontal Bar 3D Chart, Scroll Stacked Column 2D Chart, Scroll Combination 2D Chart, Scroll Combination (Dual Y) 2D Chart. New: All 2D Columns and 2D Bars can now be rendered with round edges and glass effect gradients. Improvement: Better scrolling functionality in existing scroll charts. Positioned the scroll bar at the end of canvas. Also, added more configurable properties for scroll cosmetics. Improvement: Better printing support using the Context Menu "Print Chart" option. Bug Fix: showLabels attribute wasn't working in Pie 2D Chart. Licensed users of FusionCharts can download the free upgrade from www.fusioncharts.com/PUC > My Orders.
  14. Thermometer Chart

    What error do those users get? Anything on screen at all?
  15. Rotate labels

    No - its present only in commercial version (www.fusioncharts.com).
  16. Simple PHP + MsSQL

    We only have samples for PHP MySQL. However, you just change the DB Connection to use ODBC drivers with the same SQL queries, as the SQL queries are generic.
  17. ClickURL and Link

    You'll need to make the following change. For each chart, locate the main rendering function which draws the click elements. Like for column chart, the columns are click handlers and as such drawColumns() is the function to look for (in com/fusioncharts/core/charts/<<Chart Type>>.as). Now, in this, we've the code: if (this.data [i].link != "" && this.data [i].link != undefined && this.params.clickURL == "") { //Create delegate function fnClick = Delegate.create (this, columnOnClick); //Set index fnClick.index = i; //Assign colMC.onRelease = fnClick; } else { //Do not use hand cursor colMC.useHandCursor = (this.params.clickURL == "") ?false : true; } Just remove this.params.clickURL == "" from the condition. That ways, both clickURL and the columns would have their own link.
  18. Middle East country maps

    We do have to plans to add the same 4-6 months down the line.
  19. You do not need to write physical XML files on your server disk. Instead, you can virtually relay them as explained at http://www.fusioncharts.com/FusionCharts/Docs/ > Guide for Web Developers > FusionCharts and PHP. This way each user will get his own data.
  20. ClickURL and Link

    I'm afraid this is not currently possible, as we allow either clickURL or normal links.
  21. Custom Objects

    The custom objects are pixel based drawings. They do not scale w.r.t chart. So, if you scale the chart, you'll manually need to scale the custom objects.
  22. Custom Objects

    This was happening because of the drawings you're creating in customObjects. If you remove that, it'll function fine.
  23. Charts retain the same data

    You need to convey the XML data file for each chart using the dataURL method. Please see www.fusioncharts.com/FusionCharts/Docs > Creating your First Chart.
  24. Chart Not Updating

    You can use the following JavaScript code to stop caching of XML data: chart1.setDataURL(escape("xmlfile.xml?currTime=" + getTimeForURL())); /** * getTimeForURL method returns the current time * in a URL friendly format, so that it can be appended to * dataURL for effective non-caching. */ function getTimeForURL(){ var dt = new Date(); var strOutput = ""; strOutput = dt.getHours() + "_" + dt.getMinutes() + "_" + dt.getSeconds() + "_" + dt.getMilliseconds(); return strOutput; }
  25. Simple PHP+MySQL charts

    You can see the Array or Form examples. Those are simple examples. I'm afraid we do NOT have anything simpler than that.