FusionCharts Support

Members
  • Content count

    2,097
  • Joined

  • Last visited

  • Days Won

    12

Everything posted by FusionCharts Support

  1. 3d chart border problem

    Hi, Could you please try adding this ? showBorder="1" borderColor="2e85b9"
  2. JavaScript Menu hiding behind the FusionCharts object

    Hi, Please try setting the chart's wmode to transparent and also check the z-index of the modal window.
  3. FusionCharts changed titlebar in IE

    Hi, Could you please send us the code?
  4. saving chart dynamically as an image

    Hi, You can also use JavaScript API saveAsImage() to save the chart as Image. Please refer to the Documentation : http://www.fusioncharts.com/docs/Contents/JS_saveAsImage.html
  5. Problem with chars in XML string

    Hi, Could you please try using Server.HtmlDecode(xmlString) ? Please also check whether proper chart XML is being passed. If its only <dataset> no chart is going to rendered.
  6. Percentage sign in labels/header

    Hi, If you are using dataXML method coudl you please try using '%25' ?
  7. Values outside of limits in angular gauge cause problems?

    Hi, When your dial value exceeds the upper limit the upper limit of the chart auto - resets to some value more that the dial value. The old upper limit that is set in the XML wont work. Could you please try this which might illustrate the issue:Please note the upperlimit, dial value and the color ranges. <chart lowerLimit='0' upperLimit='100' gaugeStartAngle='180' gaugeEndAngle='0' palette='1' numberSuffix='%' tickValueDistance='20' showValue='1'> <colorRange> <color minValue='0' maxValue='75' code='FF654F'/> <color minValue='75' maxValue='90' code='F6BD0F'/> <color minValue='90' maxValue='100' code='8BBA00'/> <color minValue='100' maxValue='1000' code='efefef'/> </colorRange> <dials> <dial value='122' rearExtension='10'/> </dials> </chart>
  8. Values showing up in Multi Series Column 2D chart

    Hi, Could you please send us the XML?
  9. FusionCharts with MS Excel as the data source

    Hi, I am afraid, FusionCharts does not directly pick data from database. It can only accepts XML. An intermediate script uses the SQL, builds the XML and passes the XML to the chart. For an Excel Datasource the processes involved would be same.
  10. Primary and Secondary Y Axis problem

    Hi, Could you please tell us which chart swf you are using? The XML structure shows that you might be using a multi-series Stacked Single Y chart. To use MS Stacked Dual Y chart and show secondary Axis you would need to use <lineset>. Could you please follow the XML given for the MSStacked Dual Y chart in the Chart XML Reference in the Documentation. In case you wish to use MSCoulmn3DLineDY.swf or MSCombiDY2D.swf or StackedColumn3DLineDY your XML would be a bit different - with no nested <dataset>s.
  11. multiligual characters and PHP generated XML

    Hi, You can add non-english characters to your XML using PHP and let FusionCharts show them. For this you woudl need to add the BOM to the file. If you are using dataURL method use these lines: header('Content-type: text/xml'); echo pack("CCC",0xef,0xbb,0xbf); //adding BOM characters echo strXML; If you are using dataXML method you would need to save the PHP file with UTF-8 encoding with BOM. You can do this using Notepad or Drreamweaver etc.
  12. Combination Chart Multiline ToolText

    Hi, Could you please try this XML once : <chart xAxisName='Multi<BR>Line<BR>XAxisName' yAxisName='Multi<BR>Line<BR>XAxisName' caption='Multi<BR>Line<BR>caption' subcaption='Multi<BR>Line<BR>sub-caption'> <categories> <category label='Multi-line<BR>Label 1<BR>' /> <category label='Multi-line<BR>Label 2<BR>' /> </categories> <dataset seriesName='Sr 1 : No Multi-line here' > <set value='28' toolText='Multi<BR>Line<BR>tooltip D1:1' /> <set value='2' toolText='Multi<BR>Line<BR>tooltip D1:2' /> </dataset> <dataset seriesName='Sr 2 : No Multi-line here' renderAs='Line'> <set value='13' tooltext='Multi<BR>Line<BR>tooltip D2:1' /> <set value='0' tooltext='Multi<BR>Line<BR>tooltip D2:2' /> </dataset> <styles> <definition> <style name='myHTMLFont' type='font' isHTML='1' /> </definition> <application> <apply toObject='TOOLTIP' styles='myHTMLFont' /> <apply toObject='YAXISNAME' styles='myHTMLFont' /> <apply toObject='XAXISNAME' styles='myHTMLFont' /> <apply toObject='Legend' styles='myHTMLFont' /> <apply toObject='caption' styles='myHTMLFont' /> <apply toObject='subcaption' styles='myHTMLFont' /> <apply toObject='datalabels' styles='myHTMLFont' /> </application> </styles> </chart>
  13. JavaScript Menu hiding behind the FusionCharts object

    Hi, It might be that when the final HTML is renderded to the user agent (Browser) the chart's HTML is renderdered after the HTML of the Menu. Could you please check if there is some option in the Ajax Toolkit's property to set its style property or it's style's z-index property? If you get option to set style please set : z-index:9999 or set the z-index to 9999?
  14. Values showing up in Multi Series Column 2D chart

    Hi, Could you please send us the XML that you are using? Could you please also make sure whether you have not added duplicate entries of showValues in the XML? Could please also check whether you are passin this particular XML which you are modifying to the chart?
  15. How to Use Grid Components with ASP.NET C# HELP

    Hi, Could you please try once passing these attributes along with the chart swf name building querystring? e.g. "SSGrid.swf?showPercentValues=1&showShadow=1"
  16. Data Grid

    Hi, Could you plesae try the SSGrid.swf in FusionCharts Pack? This is a grid that can show data in 2 columns only.
  17. Interaction betwee Pie Chart and Single Series Grid Component

    Hi, I am afraid, this feature is not available as of now.
  18. XML cross domains

    HI ALL, Could you please go through the threads of this post for some realyer codes in ASP, PHP, ASP.NET VB and ASP.NET C# http://www.fusioncharts.com/forum/Topic3741-27-1.aspx?
  19. Problem using : using dataURL method

    Hi All, You can use a relayer script to fetch your XML and set that to the chart. We have posted some relayer scripts using various technologies : could you please refer to them? http://www.fusioncharts.com/forum/Topic3741-27-1.aspx?Highlight=relayer
  20. Padding around chart

    Hi, 1. This seems a problem with the CSS style of the DIV, which you need to check in your css or style definitions. 2. FusionWidgets(formarly called FusionGadgets) v3's Gantt chart has scroll feature.
  21. way to Feed the data from an external source to the Fusion Charts?

    HI, I am afraid this is not possible.
  22. setTransparent not working

    Hi, Could you please tell us when are you getting this error? While defining the chart for the first time or while updating the chart? If latter, could you please check you have set registerWithJS option on. Moreover if you are using the chart inside <form> element, could you please use the new FusionCharts.js from our latest donwload? Using this you can easily set transparent mode by just calling chart1.setTransparent(true);
  23. setDataURL woes

    HI ALL, Could you please go through the threads of this post for some realyer codes in ASP, PHP, ASP.NET VB and ASP.NET C# http://www.fusioncharts.com/forum/Topic3741-27-1.aspx?
  24. V 3.0.5 Problem

    Hi, You can use this code to relay XML using ASP.NET : C#.NET CODE ASP.NET 2.0 <%@ Page Language="C#" %> < script runat="server"> protected void Page_Load(object sender, EventArgs e) { System.Xml. XmlDocument xmlDoc=new System.Xml.XmlDocument(); xmlDoc.Load( "http://www.fusioncharts.com/Gallery/Data/Col3D1.xml"); Response.ContentType = "text/xml"; Response.Write(xmlDoc.OuterXml); } </ script> VB.NET CODE ASP.NET 2.0 <% @ Page Language="VB" %>< script runat="server"> Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load Dim xmlDoc As New System.Xml.XmlDocument xmlDoc.Load( "http://www.fusioncharts.com/Gallery/Data/Col3D1.xml") Response.ContentType = "text/xml" Response.Write(xmlDoc.OuterXml) End Sub</ script>
  25. V 3.0.5 Problem

    Hi, We also have some relyer code for ASP : <%@LANGUAGE="VBSCRIPT" CODEPAGE="65001"%> <% Dim xmlhttp Set xmlhttp = Server.CreateObject("Microsoft.XMLHTTP") xmlhttp.Open "GET", "http://www.fusioncharts.com/Gallery/Data/Col3D1.xml", false xmlhttp.Send response.ContentType="text/xml" response.write(xmlhttp.ResponseText) %> Hope ASP.NET VB/C# would be easier.