-
Content count
1,122 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Swarnam
-
Hi Ricardo, Please try using the latest version of FusionCharts, i.e FusionCharts XT that would resolve this issue. Please find the attached screenshots. I hope this helps.
-
Set The Height Of Bar In Bar Chart
Swarnam replied to Krishna_Solanki's topic in FusionCharts and ASP.NET
Hi Krishna, I'm afraid, FusionCharts does not support the feature to set the height of the bar in a bar chart. As a workaround, you could use "plotSpacePercent" attribute on a bar chart, this is a spacing defined between two bars. This could take any value between 0 and 80. I hope this helps. -
Hi, Welcome to FusionCharts Forum. FusionCharts XT(v3.2.2) boasts of a plethora of enhancements compared to the previous version v3.2.1. FusionCharts XT in its JavaScript flavor essentially tries to provide a uniform visualization experience on desktop and mobile platforms by rendering FusionCharts using advanced HTML5 capabilities of devices that does not support Flash. For more information on "What's new in XT (v3.2.2)", please refer the following link: http://www.fusioncharts.com/docs/Introduction/WhatsNew32.html To download the latest evaluation version of FusionCharts, please refer the following link: www.fusioncharts.com/download/ I hope this helps.
-
Hey Martin, Welcome to FusionCharts Forum. I'm afraid, FusionCharts does not support link attribute for the the <color> element. The "link" attribute could be added only to the <pointer> element for Horizontal Linear Gauge. Each pointer can be linked to an external URL using this attribute. I hope this helps.
-
-
Hi Venkat, Welcome to FusionCharts Forum. How can I add different background colors for <VLine> labels ( 1 ). >> Starting FusionCharts v3, using the font style type, you can control the visual properties of all the text on the chart. <styles> <definition> <style name='MyFirstFontStyle' type='font' font='Verdana' size='9' bold='1' color='1F1F1F' bgColor='99E3BB' borderColor='E10000' /> </definition> <application> <apply toObject='VLINELABELS' styles='MyFirstFontStyle' /> </application> </styles> For more information on "Using Style", please refer the following link: http://www.fusioncharts.com/docs/Styles/Font.html Is it possible to create my own y-axis ranges(2). >>Yes, it is possible to explicitly set the Y-axis range values, using yAxisMinValue and yAxisMaxValue attribute. How to draw <VLine> on the bars. Now it is hiding by the bars (3). >>I'm afraid, FusionCharts does not support this feature. I hope this helps.
-
Hi Emilio, Welcome to FusionCharts Forum. I'm afraid, FusionCharts does not have an attribute "toolTipFontColor". It is not a bug , tool tip font color could be attained using styles. Using "Styles", it would be possible to customize the font properties of the tool tip. <styles> <definition> <style name='myToolTipFont' type='font' font='Arial' size='12' color='FF0000'/> </definition> <application> <apply toObject='ToolTip' styles='myToolTipFont' /> </application> </styles> By using the above code snippet, the tool tip would be displayed in red color. For more information on "Tooltip", please refer the following link: http://www.fusioncharts.com/docs/AttDesc/ToolTip.html I hope this helps.
-
Hi, Welcome to FusionCharts forum. I'm afraid, I'm unable to replicate the issue. Please find the attached screenshot for your reference.
-
Scrolled Stacked Column 2D + Line Dual Y Combination Chart
Swarnam replied to Slodave's topic in Suggestions & Requests
Hi Slodave, Welcome to FusionCharts Forum. I'm afraid, FusionCharts does not support Scrolled Stacked Column 2D +Line Dual Y combination chart currently. Thank you for your continued patience and patronage. -
Hi, FusionCharts JavaScript class now consists of four main files: FusionCharts.js, FusionCharts.HC.js, FusionCharts.HC.Charts.js and jquery.min.js These four files are present in Download Pack > Charts folder. You would only need to include FusionCharts.js in your web page (however, do not forget to copy the rest of files to your web application). The rest of the JavaScript files will be automatically loaded on-demand by FusionCharts.js. I hope this helps.
-
Hi, Could you please try once calling "FC_SetRenderer" function in PHP before you render your chart? FC_SetRenderer( "javascript" ); .... echo renderChart("../../FusionCharts/Line.swf", "", $strXML, "EquityCurve", 692, 335, false, false); I hope this helps.
-
Drawanchors Not Work In Javascript Render
Swarnam replied to findstar's topic in Javascript Problems
Hi, Glad to know the issue has been resolved. Happy FusionCharting!!! -
Drawanchors Not Work In Javascript Render
Swarnam replied to findstar's topic in Javascript Problems
Hi, I'm afraid, I'm unable to replicate the issue. Since the "labelDisplay" attribute option is set to a default value 'AUTO' AUTO mode which means that the alignment of the data labels is determined automatically depending on the size of the chart. This would override the rotatelabels attribute when set to 0 because of the width of the chart is less to accommodate the X-axis data labels. Could you try once increasing the width of the chart or set the "labelDisplay" attribute to "NONE" and "rotateLabels" to 0 ? I hope this helps. -
Everything Works Great Except Ie8 Rendering.
Swarnam replied to artur_mkrtchyan's topic in Bug Reports
Hey Artur, If Compatibility View is turned on in IE 8, FusionCharts renders without causing an error. This issue has been reported and our developers are looking into the same. We would update you soon on the same. -
Hi Emilio, Thank you for the response. Yes, the above link would take you to the Download Trial Page. Please fill in the information and download the latest version of FusionCharts i.e FusionCharts XT. I hope this helps.
-
Hi, Thank you for the response. I'm afraid, FusionCharts does not support this feature currently.
-
Fusionwidgets Not Working With Fusioncharts .js Under Firefox
Swarnam replied to Stevers's topic in Bug Reports
Hi Stevers, Thank you for the mail and I sincere apology for the late reply. When you set percent size to a chart, it tries to get the width/height of its parent container. It seems that the container where you are rendering the chart is not set with a proper height when the chart is rendered into it. For example, if you have a container <div id="chartContainer"> and this DIV is not set with an absolute or relative height, the DIV's height will be zero. When a chart is rendered in this DIV with 100% height, the chart would try to derive the height of the parent DIV which is zero. Could you please once try the following code and let us know your feedback? Also, please find the attached screenshot for your reference . <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> <html> <head> <title>Failures</title> <link rel="stylesheet" href="../dashboards.css" type="text/css"> </head> <body> <div id="currentChartContainer" style="width:50%; height:500px;">loading current chart...</div> <script type="text/javascript" src="FusionCharts.js"></script><!-- (#1) --> <!-- <script type="text/javascript" src="/common2/FusionWidgets/v3.1.1/FusionCharts.js"></script> (#2) --> <!-- <script type="text/javascript" src="/common2/FusionCharts/v3.2.1/jquery.min.js"></script> --> <script type="text/javascript"> var chart = new FusionCharts( "AngularGauge.swf", "currentChart", "100%", "70%", "0", "1" ); // chart.setChartDataUrl( "current-data.xml", "xml" ); chart.setDataXML( '<chart caption="Caption" subCaption="SubCaption" animation="0" lowerLimit="0" upperLimit="7" gaugeStartAngle="180" gaugeEndAngle="0" palette="3"><colorRange><color minValue="0" maxValue="3" code="FF654F" /><color minValue="3" maxValue="5" code="F6BD0F" /><color minValue="5" maxValue="7" code="8BBA00" /></colorRange><dials><dial value="2" /></dials></chart>' ); chart.render( "currentChartContainer" ); </script> </body> </html> -
Hi, If you want very thin bars, you can set "plotSpacePercent" attribute to its max value of 80. I hope this helps
-
Hide A Series By Default In Stack Column Chart
Swarnam replied to kamwailai's topic in FusionCharts and ASP.NET
Hi, I'm afraid, FusionCharts does not support this feature to hide the dataset while loading the chart and rendering while clicking the legend icon currently. -
Hey Monn, Welcome to FusionCharts forum. Could you please try once using "pieRadius" attribute in the <chart> element? I hope this helps .
-
Hi Ludo, Welcome to FusionCharts forum. To change the color of the alternate vertical grid bands, could you please try using the "alternateVGridColor" attribute in the chart element. Please find the attached screenshot for your further reference.
-
Hi, Welcome to FusionCharts forum. I'm afraid, the version downloaded is not the FusionCharts XT version. Could you please try downloading using the following link: http://www.fusioncharts.com/download/ I hope this helps.
-
How To Combine Fusion Charts And Fusion Widgets In A Single Page (Again)
Swarnam replied to Stevers's topic in FusionCharts and PHP
Hi Stevers, Welcome to FusionCharts forum. FusionCharts and FusionWidgets could be rendered in the same page using the newer version of FusionCharts.js file. The JS files available with FusionCharts pack v3.2.1 is the latest one. Could you please send us the code to look into the issue? -
Hi, Thank you for the response. I'm afraid, "valueOnRight" attribute for trendline element is not supported for FusionCharts Free. If you would like to use this attribute, could please try downloading FusionCharts Evaluation Version? I hope this helps.