-
Content count
2,385 -
Joined
-
Last visited
-
Days Won
11
Everything posted by Pallav
-
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' />
-
I'm afraid this is not currently feasible with FusionCharts.
-
You can have them drill down to a web page - but not to other PowerPoint slides.
-
It's available in demo version too. Please see www.fusioncharts.com/FusionCharts/PMDocs > Drill Down Maps.
-
Is there an onLoad event to know when the graph finished rendering?
Pallav replied to kappuz's topic in General usage
I've added this as a feature extension for future versions. -
Yes - the returned data basically contains the new position of nodes. No - you cannot create nodes/connectors without re-creating.
-
You cannot do so in FusionCharts v2.3 - It's possible only in FusionCharts v3.
-
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.
-
JavaScript Menu hiding behind the FusionCharts object
Pallav replied to Pallav's topic in Javascript Problems
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 -
inconsistencies in drawing the Horizontal Bar Chart monthly
Pallav replied to Pallav's topic in XML Issue
This bug was already fixed in FusionCharts v3.0.2 - seems you're using an older version. Please re-download the evaluation. -
For once, can you try putting the XML file in the same folder as PPT and locally reference it - instead of the full URL?
-
FC_Rendered equivalent after calling setDataURL?
Pallav replied to Lonnie W's topic in Javascript Problems
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); } -
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.
-
If you're referring to US states, you can achieve the following level of drill down: World Map --> US Map --> 51 US States.
-
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.
-
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.
-
Can you please let us know the exact URL you're putting for the Movie SWF (in both fields in the dialog box)?
-
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.
-
I'm afraid we do not have such a chart, as of now.
-
Updating Instrument via JavaScript and a Remote Data Source
Pallav replied to Lonnie W's topic in Using FusionWidgets XT
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. -
I'm afraid it's not currently possible, as of now.
-
FC_Rendered equivalent after calling setDataURL?
Pallav replied to Lonnie W's topic in Javascript Problems
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. -
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.
-
Problem of display with: PYAxisName and SYAxisName
Pallav replied to davidoff's topic in General usage
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. -
This code works fine. What is it that you want to do?