-
Content count
2,097 -
Joined
-
Last visited
-
Days Won
12
Everything posted by FusionCharts Support
-
Hi, Could you please try adding this ? showBorder="1" borderColor="2e85b9"
-
JavaScript Menu hiding behind the FusionCharts object
FusionCharts Support replied to Pallav's topic in Javascript Problems
Hi, Please try setting the chart's wmode to transparent and also check the z-index of the modal window. -
Hi, Could you please send us the code?
-
saving chart dynamically as an image
FusionCharts Support replied to JohnBannister's topic in FusionCharts and ASP.NET
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 -
Problem with chars in XML string
FusionCharts Support replied to stanmakfusion's topic in FusionCharts and ASP.NET
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. -
Hi, If you are using dataXML method coudl you please try using '%25' ?
-
Values outside of limits in angular gauge cause problems?
FusionCharts Support replied to PerroLoco's topic in Using FusionWidgets XT
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> -
Values showing up in Multi Series Column 2D chart
FusionCharts Support replied to FusionCharts Support's topic in General usage
Hi, Could you please send us the XML? -
FusionCharts with MS Excel as the data source
FusionCharts Support replied to machinma's topic in General usage
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. -
Primary and Secondary Y Axis problem
FusionCharts Support replied to tcraigen's topic in Bug Reports
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. -
multiligual characters and PHP generated XML
FusionCharts Support replied to dartmix's topic in XML Issue
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. -
Combination Chart Multiline ToolText
FusionCharts Support replied to FusionCharts Support's topic in General usage
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> -
JavaScript Menu hiding behind the FusionCharts object
FusionCharts Support replied to Pallav's topic in Javascript Problems
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? -
Values showing up in Multi Series Column 2D chart
FusionCharts Support replied to FusionCharts Support's topic in General usage
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? -
How to Use Grid Components with ASP.NET C# HELP
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
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" -
Hi, Could you plesae try the SSGrid.swf in FusionCharts Pack? This is a grid that can show data in 2 columns only.
-
Interaction betwee Pie Chart and Single Series Grid Component
FusionCharts Support replied to FusionCharts Support's topic in FusionCharts and ASP.NET
Hi, I am afraid, this feature is not available as of now. -
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?
-
Problem using : using dataURL method
FusionCharts Support replied to amansukhani's topic in XML Issue
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 -
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.
-
way to Feed the data from an external source to the Fusion Charts?
FusionCharts Support replied to FusionCharts Support's topic in General usage
HI, I am afraid this is not possible. -
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);
-
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?
-
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>
-
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.