-
Content count
2,385 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Pallav
-
Can you try switching the debug mode of chart on and clicking on the dataURL link?
-
You can use the grid component that we provide in the same suite. It takes the data from the same source and renders the legend as you need it.
-
I'm not sure if I've understood your requirements. Can you please elaborate a bit?
-
drop down menu flickers when when over chart
Pallav replied to funktifyknow's topic in Miscellaneous
Have you set the WMode of chart to transparent? -
ClickURL helps you make the entire chart as a URL (for thumbnail purposes). By positioning the scroll bar the end of canvas, we meant it's attached to the canvas now - in the earlier version, there was a gap between the canvas and the scroll bar.
-
You can have links on this chart too. Can you please send us the XML as attachment?
-
error occurred while loading data - only on IE only on 1 site
Pallav replied to isaacfinnegan's topic in Miscellaneous
Are you relaying the data over SSL (HTTPS)? -
Steve, Just copy the files to a server (either localhost or a web server) and then try again.
-
I'm afraid that's not possible with FusionCharts.
-
problem with XML Encoding when fusion charts are loaded in OpenLaszlo App
Pallav replied to Pallav's topic in XML Issue
Can you make sure that your XML data has proper BOM mark? -
I'm afraid we do not allow individual charts purchase.
-
Yes - with the Enterprise license, you'll be able to - but that needs good knowledge of Flash and ActionScript. Moreover, we do not provide support on custom map building.
-
JavaScript Menu hiding behind the FusionCharts object
Pallav replied to Pallav's topic in Javascript Problems
Replace the existing FusionCharts.js file with the new one (link above). That alone should take care of it. You would NOT need to change anything in your .NET code. -
Who to print the chart in landscape form
Pallav replied to eduardo_medina's topic in FusionCharts and ASP.NET
Yes - you can print the charts using: 1. Browser print control 2. Chart context menu. -
I'm afraid that's not directly possible.
-
Vertical trend lines are possible only in scatter and bubble charts. Rest of the charts do not support it.
-
Pie charts: chart with only 1 piece shows up small?
Pallav replied to umbrae's topic in General usage
Hi, In that case, you'll manually need to set the pieRadius for the chart. -
I'm afraid sequencing is not currently possible with FusionCharts.
-
You need to set following in XML: <chart bgAlpha='0,0' ..> And, then add 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>
-
No - as of now, you cannot create your own maps. However, we do create custom maps for $299 each. >> Also, does the source code come with the license for Power Maps, as it does with Fusion Charts? Yes - the Enterprise License does.
-
Please use FusionCharts v3 and set <chart labelDisplay='ROTATE' slantLabels='1' ..>
-
Hi, You may please see http://www.fusioncharts.com/docs/Contents/AttDesc/ToolTip.html for more info on this.
-
Please see http://www.fusioncharts.com/docs/Contents/JSEmbed.html
-
Please make sure of the following: 1. Please make sure that you're using FusionCharts v3 charts, as the JavaScript API was introduced in this version. To check whether you're using v3, just match your SWF name with the names listed at http://www.fusioncharts.com/Docs/Contents/ChartList.html 2. Please ensure that you've set registerWithJS flag to 1. For more information on how to do this, please see http://www.fusioncharts.com/Docs/Contents/JS_Overview.html. Basically, you need to set the last parameter in the following code to 1: var chart1 = new FusionCharts("FusionCharts/Column3D.swf", "chart1Id", "400", "300", "0", "1"); 3. Please make sure that you're not placing the chart inside a FORM element. When the chart is inside a FORM element, the browser cannot access the chart using DOM. 4. Please make sure that you're NOT running the chart from local file system (C: , D:). Instead, run the chart from behind a server (localhost - IIS, Apache etc.). This is because the Flash Player security settings do not allow Chart to JavaScript interaction, unless otherwise specifically set.
-
'this page controls controls that are marked unsafe'
Pallav replied to Troy's topic in General usage
Hi, Can you please post a live link of this setup?