-
Content count
2,385 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Pallav
-
Can you post host your error page live on your server, so that we can debug?
-
I'm afraid it's not directly possible. You'll have to edit the source code to attain this.
-
What error do you get when you run it?
-
v3 Column 3D chart is fully backward compatible with v2.3 chart. What error do you get when you use v3 chart?
-
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/
-
I'm afraid it's not currently possible using FusionCharts.
-
You can use MSColumnLine3D.swf instead of MSColumn3DLineDY.swf to show the y-axis values for only the primary axis.
-
I'm afraid that's not possible in the current version.
-
Can you pls try the debugging steps listed at http://www.fusioncharts.com/FusionCharts/Docs/Contents/Debug/Basic.html ?
-
You seem to be using FusionCharts v2.3. In FusionCharts v3, we've added automatic color palettes.
-
I'm afraid we do not have an option for this (unless you want to delve into the source code and modify it).
-
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.
-
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.
-
What error do those users get? Anything on screen at all?
-
No - its present only in commercial version (www.fusioncharts.com).
-
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.
-
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.
-
We do have to plans to add the same 4-6 months down the line.
-
Simultaneous Users and server side XML file.
Pallav replied to jlomeli's topic in FusionCharts and PHP
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. -
I'm afraid this is not currently possible, as we allow either clickURL or normal links.
-
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.
-
This was happening because of the drawings you're creating in customObjects. If you remove that, it'll function fine.
-
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.
-
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; }
-
You can see the Array or Form examples. Those are simple examples. I'm afraid we do NOT have anything simpler than that.