-
Content count
1,122 -
Joined
-
Last visited
-
Days Won
7
Everything posted by Swarnam
-
Hi, The way Sashibhushan had mentioned is used to generate the charts from the PHP API and the way you have mentioned is used to render charts through FusionCharts constructor.
-
Character encoding problem in exporting pure javascript charts in ASP.NET
Swarnam replied to FerTheLast's topic in FusionCharts and ASP.NET
Hi, We are planning to ship a self hosted Export handler module in next quarter. -
Hi, The support for exporting the chart data as CSV is being still supported in FusionCharts XT v3.4.0. FusionCharts("chartID")getCSVData(); Please refer to : http://docs.fusioncharts.com/FusionCharts.html#item-getCSVData
-
Hi, Yes, you can define custom colors followed by colors mentioned in the palleteColors attribute. <chart caption='Monthly' xAxisName='Month' yAxisName='Revenue' numberPrefix='$' showValues='0' paletteColors= '#0075c2,#1aaf5d'> <set label='Jan' value='420000' color='00008B'/> <set label='Feb' value='910000' color='EEBBCC'/> <set label='Mar' value='720000' /> <set label='Apr' value='550000' /> <set label='May' value='810000' /> <set label='June' value='810000' /> </chart> Hope this helps.
-
Positioning Back Or Export Buttons In Drill Down Charts
Swarnam replied to sbatta's topic in FusionCharts DOM
-
Use variable in Javascript function for render
Swarnam replied to abdfahim's topic in Javascript Problems
Hi, Yes, you can pass JS variable to FusionCharts constructor as you've mentioned in the post. -
Hey, Issue is not replicated using the latest version of FusionCharts Suite. Can you please confirm the version of FusionCharts used?
-
Positioning Back Or Export Buttons In Drill Down Charts
Swarnam replied to sbatta's topic in FusionCharts DOM
Hey, This attribute works with latest version of FusionCharts Suite v3.4 <chart caption='Monthly' xAxisName='Month' yAxisName='Revenue' numberPrefix='$' showValues='0' exportEnabled='1' toolbarHalign='left'> <set label='Jan' value='420000' /> <set label='Feb' value='910000' /> ...... </chart> Hope this helps. -
Yes, we would do the needful.
-
Hi, Glad to know you've found the answer. setChartAttribute(attributes, value) API would help you to achieve your requirement.
-
Positioning Back Or Export Buttons In Drill Down Charts
Swarnam replied to sbatta's topic in FusionCharts DOM
Hi, To replace the above code, we have added a new attribute "toobarHAlign" to avoid overlapping. Can you try adding "toobarHAlign"=left' " in the chart XML code? This would help us to put the export button on left and avoid overlapping. Ref. Code: <chart toobarHAlign='left'....> Hope this helps. -
Hi, No, ZoomLine chart does not support Dual Y axis.
-
Hi, The divisional line calculation would be divided equally on both sides of the planes. You can drop a mail to "[email protected]" quoting this forum post.
-
Chart do not appear if the height of the chart increases. Is there any limit about the height of Chart
Swarnam replied to qasimraza1979's topic in Using FusionWidgets XT
Hey, The chart is rendered while using v3.2.2. Please find the screenshot attached. -
How to display count query result in fusioncharts
Swarnam replied to Zeba hassan's topic in FusionCharts and PHP
Hey, Currently, we do not support any attribute to count the number of occurrence within a column field. If you would like to visualize the count to be depicted in a chart, retrieve the count from database through coding at your end and pass it to XML/JSON data to render the chart. Hope this helps. -
Hey, Can you please try using "containerBackgroundOpacity" element as 0 and pass it to FusionCharts constructor? Ref. Code: FusionCharts.ready(function () { var myChart = new FusionCharts({ type: 'column2d', renderAt: 'chart-container', containerBackgroundOpacity : '0' }); Hope this helps.
-
Hey, Apologies for the delayed response. I'm unable to replicate the issue on Zoomline charts using IE browser and Windows 8 OS. Please find the screenshot attached.
-
Hey, Attribute is named as "labelStep". This attribute is used to skip the data labels by the values specified for "labelStep" on the X-axis. Hope this helps.
-
Javascript driven Zoomline chart vTrendsline are not working
Swarnam replied to [email protected]'s topic in General usage
Hey, Vertical TrendLines are not supported by JavaScript ZoomLine chart. It has been added to our wishlist. Once implemented, we would keep you posted. -
Hi, Try providing "yaxisminvalue" as "-600000" in the chart element. Hope this helps.
-
Chart do not appear if the height of the chart increases. Is there any limit about the height of Chart
Swarnam replied to qasimraza1979's topic in Using FusionWidgets XT
Hi Qasim, Can you confirm if the issue is visible for charts rendered as Flash or JavaScript? I'm unable to replicate the issue using the latest version of FusionCharts XT v3.4 while rendering charts in JavaScript mode. Download link: http://www.fusioncharts.com/download/ Hope this helps. -
Empty <set/> in stacked 2d throwing "Y is undefined" js error
Swarnam replied to Sri Lalitha's topic in XML Issue
Hi, Issue does seems to exist with FusionCharts XT v3.4. Can you please try upgrading to the latest version of FusionCharts XT v3.4? For Evaluation version : http://www.fusioncharts.com/download/ Do check with our latest release and let us know if your issue has been resolved? -
How to remove gradient from Legends.
Swarnam replied to qasimraza1979's topic in Using FusionWidgets XT
Hi, Legends are having gradient (two colors) in it. while I want to make this only one color (Color that I have picked) not the white color. >> Try setting "usePlotGradientColor" attribute to 0 in chart element. Plus is there a way to increase or decrease the size of the image apearing in the legend. >>Try using "legendIconScale" attribute. This attrbute helps in scaling of legend icon and controls the size. Range: 1-5 Hope this helps. -
Hi, Welcome to FusionCharts Forum Post. * Inside the documentation of Multi-series 2D, in the "Divisional Lines and Grids" section, the property "numvdivlines" is missing. It was there in the FC v3.3.1SR1 doc and it still works under v3.4. >>Vertical divisional lines are supported in a line/area chart. This attribute is present in Multi Series Line/Area chart docs. * The property "showVDivLines" has changed in FC 3.4 for Multi-series 2D. If showVDivLines=1 then *each* value gets a vLine, ignoring the values of the "labelstep" and "numvdivlines" properties. Is it a bug or is this change in behavior not documented? >> "showVDivLines" is supported only by ZoomLine charts till FC v3.3.1-SR3. However, the same functionality has been extended to Line/Area chart in v3.4 and documentation is "InProgress". If you would like to show divisional lines less than category count, please specify "numVDivLines" attribute. Hope this helps.
-
Hi, Can you please update the following line of code as chartConfig.adjustDiv = '0'; in DiVLineIssue.html file? Hope this helps.