-
Content count
1,253 -
Joined
-
Last visited
-
Days Won
3
Everything posted by Rahul Kumar
-
Javascript error for 'save as image'
Rahul Kumar replied to hungtrieu2910's topic in Javascript Problems
Hi Vipin, If you are running your HTML locally then by default Flash Player's security setting blocks invoking/calling JavaScript from SWF (Flash Movie), so you need to reset your setting into Global Security Setting panel. Please see the following post for more information: http://www.fusioncharts.com/forum/FindPost8077.aspx -
Multidimensional Dimensional Array from MySQL
Rahul Kumar replied to billsinc's topic in FusionCharts and PHP
Hi, Sorry for late response. You could use FusionCharts_Gen.php class file by which you can directly render the chart from database. Please see the doc at http://www.fusioncharts.com/docs/Contents/PHPClassAPI/PHPClass_DB.html for more information. -
Hi, I am sorry, I did not notice that. And I am afriad, it is not possible as of now.
-
3D lighting / shading causing color legend to be off?
Rahul Kumar replied to rtibmx's topic in General usage
Hi, I am sorry, it is not possible as of now. -
Hi, Please see the following XML as reference to insert logo into a chart. For more information please see the docs at www.fusioncharts.com/docs NOTE: The above feature is supported in FusionCharts V3.1 version.
-
Hi, Please change chart.setDataXml to chart.setDataXML.
-
Hi, Could you please pass the XML without breaking it into multiple lines, and try again?
-
How to make a fly-in animation for pie chart slices?
Rahul Kumar replied to Rahul Kumar's topic in General usage
Hi, I am afraid, it is not possible as of now. -
Hi, Could you please try using the following XML?
-
I am a afraid it is not possible as of now.
-
Hi, Could you please read our docs at www.fusioncharts.com/docs -> Exporting as Image/PDF
-
Multi-series Line Chart - vLine linePosition and chart paletteColors
Rahul Kumar replied to Rahul Kumar's topic in General usage
Hi, Couldd you please make sure that you are using FusionCharts V3.1 chart, as this feature is supported in V3.1 only. -
Hi, Please see the XML: You can use this XML with any of our Multi-Series chart. Here is the chart generated by the above XML (created using MSColumn2d.swf chart):
-
Hi, Could you please check your scatter.swf chart version once and make sure it is 3.1.0? You can do so by rendering the chart in debug mode.
-
3D lighting / shading causing color legend to be off?
Rahul Kumar replied to rtibmx's topic in General usage
Hi, Could you please try using use3DLighting='0' attribute in <chart> element? -
Show database text field as ToolTip in C#.net
Rahul Kumar replied to hiral.hapani's topic in FusionCharts and ASP.NET
Hi, We have released FusionCharts V3.1, Please update your chart. -
Hi, FusionCharts strictly follow its own XML structure which includes <chart></chart><categories></categories><dataset></dataset>... etc, however you can add yours tag too but its native tag should be there also. Please see below for sample. <chart palette='1' use3DLineShift='1' caption='Hours Accuracy' divLineColor='#000066' toolTipSepChar='' showValues='0' color='0b5ed7' formatNumberScale='0' plotSpacePercent='60' PYAxisName='Hours' SYAxisName='Percent' SYAxisMinValue='0' SYAxisMaxValue='100' > <categories> <category label='Jun 08'/> <category label='Jul 08'/> <category label='Aug 08'/> <category label='Sep 08'/> <category label='Oct 08'/> <category label='Nov 08'/> <category label='Dec 08'/> </categories> <dataset seriesName='Percent' color='0b5ed7' anchorRadius='2' anchorBgColor='69c3da' parentYaxis='S'> <set value='081.4'/> <set value='087.75'/> <set value='093.42'/> <set value='090.76'/> <set value='094.62'/> <set value='083.65'/> <set value='087.4'/> </dataset> <dataset seriesName='PayrollHours' color='c1e3eb'> <set value='114.00'/> <set value='149.75'/> <set value='232.50'/> <set value='145.00'/> <set value='134.75'/> <set value='137.00'/> <set value='152.75'/> </dataset> <dataset seriesName='ProcessHours' color='db8bd5'> <set value='92.8'/> <set value='131.4'/> <set value='217.2'/> <set value='131.6'/> <set value='127.5'/> <set value='114.6'/> <set value='133.5'/> </dataset> <trendLines> <line startValue='94' endValue='85' isTrendZone='1' alpha='50' thickness='6' parentYAxis='S' showOnTop='0' valueOnRight='0' color='#006666' displayvalue='Goal 85% to 94%'/> </trendLines> <academicyear></academicyear> </chart>
-
Hi, Could you please send us your code to [email protected]?
-
Hi, Could you please send us your XML, and please also let us know the method (dataXML or dataURL) you are using?
-
Hi, Could you please update your chart and try again.
-
Javascript error for 'save as image'
Rahul Kumar replied to hungtrieu2910's topic in Javascript Problems
Hi, I am afraid, the docs you are viewing is for MultiSeries Combination 3D Chart (mscombi3d.swf) and the chart you are using is a (pie3d.swf), please see your code below. Also please note that pie chart does not support this features. -
Javascript error for 'save as image'
Rahul Kumar replied to hungtrieu2910's topic in Javascript Problems
Hi, I am afraid, view2D and view3D is not exposed to JavaScript externalInterface, meaning you could not use view2D and view3D. -
Hi, There is one option, you can use a relayer code, that will fetch the XML from different domain and after that, you can use this relayer as dataURL to the chart. Please see to this: http://www.fusioncharts.com/forum/Topic3741-27-1.aspx
-
Show database text field as ToolTip in C#.net
Rahul Kumar replied to hiral.hapani's topic in FusionCharts and ASP.NET
Hi, Yes, it is possible, you can show comments in tooltip. We can help you but only if you could give us some idea, how you are doing this or the code sample.