
matthiasmax
Members-
Content count
9 -
Joined
-
Last visited
About matthiasmax
-
Rank
Forum Newbie
-
matthiasmax started following Set NLS to german (DE) instead of english (EN)
-
Hi, how can I set the NLS or language or number format to german (DE) ? I handing over numbers that have commas as decimal separator. Setting the decimalSeparator attribute didnt help. Example value: <set value='5,6350' /> THanks for any hints.
-
Callback In Insert/update Jquery Plugin?
matthiasmax replied to matthiasmax's topic in Javascript Problems
Basically I want to catch the event that is being thrown when the chart is finished loading / drawing. -
<Span> Renders As Chartobject-1 On Jquery Updatefusionchart
matthiasmax replied to matthiasmax's topic in Javascript Problems
Hi, any progress on this one? It's getting urgent now. Thank you -
<Span> Renders As Chartobject-1 On Jquery Updatefusionchart
matthiasmax posted a topic in Javascript Problems
Hi, after a simple updateFusionChart call the id changes to this unpredictable value? Even setting the id specifically does not help. $("div[id$=" + containerID + "Body]").updateFusionCharts({"swfUrl": type, "renderer": "javascript" }); or this $("div[id$=" + containerID + "Body]").updateFusionCharts({ "id": oldChartId, "swfUrl": type, "renderer": "javascript" }); Any idea? -
Hi, is this implemented? I want to go on with other code AFTER these events have finished. Thanks!
-
"chart Id Is Same As A Javascript Variable Name" When Using Jquery Plugin.
matthiasmax replied to matthiasmax's topic in Javascript Problems
Hi, thanks for the proposal but this is really not helping much. My whole website and calls to FusionCHart are already in jQUery. I now want to add a change of type on the client side which is why I need to call the chart second time via the javascript variable. Or is there another way? Thank you. -
"chart Id Is Same As A Javascript Variable Name" When Using Jquery Plugin.
matthiasmax posted a topic in Javascript Problems
Hi, I'm getting this error in the FireBug console when I fire the function which loads the chart the second time. This is my code insde this function: if (FusionCharts(domID)) { $("div[id$=" + containerID + "Body]").children(':first').updateFusionCharts({ "dataSource": "../../" + parChart.getDataURL(), "dataFormat": "xmlurl" }); } else { $("div[id$=" + containerID + "Body]").children(':first').insertFusionCharts({ "id": domID, "swfUrl": type, "renderer": "javascript", "dataSource": "../../" + parChart.getDataURL(), "dataFormat": "xmlurl", "width": width, "height": height }); } My question is - how do I set the chart created by insertFusionCHart to a variable? It's possible without the jQuueryy plugin - but how do I do it now? Thanks. -
Hi, I use the updateFusionCharts jquery command to update data in a chart. The call however makes the chart look like loading ddata twice: First time the "old" data is "reanimated" and then after the new data is loaded the new data appears (animated). I would have expected the chart to show the "loading data" screen upon the event of updateFusionCharts. What am I doing wrong here? Thank you for any hints
-
Line/bar Chart Not Showing Legend If Data Not Available
matthiasmax replied to sumitanvekar's topic in XML Issue
Hi there, this does not make too much sense for me. Is there a attribute forceLegend or something. For my understanding there ARE values in the dataset - namely th <set> objects. So that shows the chart that the user wanted to show the series. Why not show the legend then? Let me explain: I would have to add a '0' value now to see the legend of the series. But that will make my values to show wrong. Its not what the data is! Any advice? Thank you