-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
FusionCharts real time update
FusionCharts Support replied to FusionCharts Support's topic in General usage
hi, We are afraid, this feature is not yet supported. -
Using the character '+' in chart labels
FusionCharts Support replied to FusionCharts Support's topic in General usage
hi, did you try using %2B ? -
ChartBorder still visible when not wanted
FusionCharts Support replied to Mahoutsoukai's topic in General usage
hi, Use showBorder='0' -
putting tabular matter inside a marker
FusionCharts Support replied to kmorse's topic in Using FusionMaps XT
hi, Check the attached XML out in a work map. OfficeLocations.xml -
hi, I am afraid FusionCharts,as fo now, does nto supprot this.
-
Multiple Pie3D charts
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
hi, It might be that you have not added/included FusionCharts.js script in <script> tag in the HTML - HEAD part of your aspx file. -
Pleaes use showLegend='0'
-
Overriding markerBgColor in toolTip and Marker
FusionCharts Support replied to kmorse's topic in Using FusionMaps XT
hi, I am afraid you cannot do this -
Tracking click events with Google Analytics
FusionCharts Support replied to CleanCruiser's topic in General usage
hi, You need to provide only 1 link to a task. Either the URL or Javascript functions. You can go for either of the 2 options. 1. use the link to call 1 javascript function and 1 JS command : The first - tracking to GA, Second calling the ASP file. link='GATracker('YOURGAID' );location.href='/search.asp?dep_date=1/09/2008®ion=1' ' 2. Write the JS for GA in the Search.asp file so that when ever it it called it will execute GA Tracking. -
Tracking click events with Google Analytics
FusionCharts Support replied to CleanCruiser's topic in General usage
hi, Thanks for using FusionCharts. You can always call a JavaScirpt function from links.. say, link='GATracker('YOURGAID')' **YOURGAID = the ID that GA gives to a page : e.g.UA-1644710-1 This will call a JS function on your HTML page (you need to write the function ... <script type="text/javascript"> var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www."); document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E")); </script> <script type="text/javascript"> function GATracker(GAID){ var pageTracker = _gat._getTracker(GAID); pageTracker._initData(); pageTracker._trackPageview(); } </script> Now, make use of the link in your Chart XML and you will find GA receiving Data -
Samples for VWD 2008 ASP.net 3.5
FusionCharts Support replied to tigerm's topic in Using FusionMaps XT
Hi, You can always use the existing ASP.NET 2.0 samples for ASP.NET 3.5 too. We are doing some R&D on ASP.NET 3.5. Would you please like to help us, pointing the new featues of ASP.NET 3.5 that you would like to be implemented. -
Overriding markerBgColor in toolTip and Marker
FusionCharts Support replied to kmorse's topic in Using FusionMaps XT
hi, Try this : <map markerBorderColor='000000' markerBgColor='ff0000' showMarkerToolTip='1' > <data> </data> <markers> <definition> <marker id='01' x='386.02' y='264' label='InfosoftGlobal' /> <marker id='02' x='533.02' y='171' label='FusionCharts' /> </definition> <shapes> <shape id='s1' type='polygon' sides='4' fillColor='0000ff' radius='20' startAngle='90'/> <shape id='s2' type='polygon' sides='4' fillColor='00ff00' radius='20'/> </shapes> <application> <marker id='01' shapeId='s1' /> <marker id='02' shapeId='s2' /> </application> </markers> </map> -
How use sql to generate stacked chart by php
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and PHP
Hi, Can you please go thorugh this post : http://www.fusioncharts.com/forum/FindPost3936.aspx -
The bar-graphs color currently fade to white through the bar.
FusionCharts Support replied to Pallav's topic in General usage
hi, please use plotFillRatio='100,0' to give a mono colors to the dataplots. -
Plotting trendlines on XY scatter chart
FusionCharts Support replied to CleanCruiser's topic in General usage
hi, You can do this by defining different startValue and endValue. -
putting tabular matter inside a marker
FusionCharts Support replied to kmorse's topic in Using FusionMaps XT
hi, In the Office Localtion Example from Maps Gallery you can get the XML that shows how to use multiline in marker tooltips. Apply the same to marker labels.The idea is set the font style's property isHTML='1' and use this font style to markerlabels and use <BR> (i.e. HTML <BR>) for line break in markerlabels. For tabs please use -
Making a fixed Canvas Width? Possible?
FusionCharts Support replied to ClemsonJeeper's topic in General usage
hi, I am afraid this is not supproted as of now. -
HTML tags characters appearing "literally" in toolText
FusionCharts Support replied to Mahoutsoukai's topic in Using FusionMaps XT
hi, Can you please try adding a font style for TOOLTIP and in that style definition add isHTML='1'? -
hi, The demo is not documented. It uses features like link attribute of map XML and Reloading the map using JavaSCript in a separate DIV which animates/zooms in and out. This is a mere showcasing of some of the features of FusionMaps.
-
hi, You can try labelDisplay='WRAP'
-
A variation of the FusionCharts and Javascript Example
FusionCharts Support replied to coolegg's topic in Javascript Problems
Hi, yes, you can do this easily writing some extra lines of Javascript codes and this wont need AJAX. You need to use javascript to define a new FusionCharts with new SWF name and set the dataXML/dataURL and render it to the same div containing the earlier chart. -
hi, YOu need to build XML for the charts/maps/gadgets retrieving data from your database using ASP.NET or PHP or whichever suits you and pass the XML to the chart/map/gadgets. Hence its upto you to decide.
-
hi hayde, We are afraid that was a bug in Pie3D and doughnut charts and we have resolved that and soon going for an new minor release with the updated charts. You can also send your customer ID and email to us at [email protected] for the updated charts.
-
hi, please do not use vbCrLf nay where when you use dataXML.Because that will terminate the string in javaScript and if you turn on the SCript Debugging in IE or see Error Console in Firefox etc. you will find the error : Unterminated String Cionstant.
-
Supplied JavaScript Example does not work
FusionCharts Support replied to FusionCharts Support's topic in Using FusionMaps XT
hi, Can you plase try running from a server? Secondly you need to track first whther the chart has been fully loaded or not before using setDataXML/setDataURL. You can track this using FC_Rendered(domId) function which is called whenever the chart is fully rendered (you need to set registerWithJS option to 1)