-
Content count
152 -
Joined
-
Last visited
Everything posted by Nabajeet
-
Hi, FusionCharts being a JavaScript library requires a browser to run its code and generate the SVG image and display it on the browser, it is possible to get this SVG in the form of png, jpeg, pdf or SVG itself. But it is not possible to create the SVG directly without rendering on the browser. Thanks.
-
Hi, You will need to set radius attribute iside the set elements of the dial to control the length of the dial like: "dials": { "dial": [{ "radius":'200', "value": "67" }] } Thanks.
-
Hi, It would not be possible to place the trendline value somewhere else because it will be graphically incorrect. You can however reposition the Y axis values so that they do not overlap the trend line value. Please check this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/Tu57h/21/ Also check this link for info on configuring div lines: http://docs.fusioncharts.com/tutorial-configuring-your-chart-div-lines-and-grids.html Thanks.
-
Hi, The feature is not supported, sorry for inconvenience. Thanks.
-
set drill down map for each city separately
Nabajeet replied to evanchai's topic in Using FusionMaps XT
Hi, We have tested your code in IE8 and it is running fine. Please check screenshot. Thanks. -
Y axis values disappear after re-size browser.
Nabajeet replied to AmitAaryan's topic in FusionCharts and PHP
Hi, Can you please upgrade to the latest version of FusionCharts and let us know if the problem is resolved. You are using an old version of FusionCharts, we have tested the issue in the latest version and the problem doesn't occur. You can download the latest trial version of FusionCharts here: http://www.fusioncharts.com/download/ Thanks. -
[Bug] FusionCarts engine creates invalid XML IDs.
Nabajeet replied to ithurlow's topic in Javascript Problems
Hi, Thanks for sharing the solution. It will be helpful for others facing the issue. Thanks. -
Hi, We have forwarded your new feature request to the engineering team. Shall keep you posted about any feedback. We have also created FreshDesk forum discussion topic, you may add your comments to it.: https://support.fusioncharts.com/discussions/topics/5000045740 Thanks.
-
set drill down map for each city separately
Nabajeet replied to evanchai's topic in Using FusionMaps XT
Hi, You need to set the link attribute in this way: "link": "newchart:(map_name)-(data_format)" Eg: "link": "newchart:asia-json" Please check this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/jm3otwe7/ You may check this link for more info: http://docs.fusioncharts.com/tutorial-map-guide-adding-drill-down-to-maps.html Thanks, -
[Bug] FusionCarts engine creates invalid XML IDs.
Nabajeet replied to ithurlow's topic in Javascript Problems
Hi, Please upgrade to the latest version of FusionCharts which you can use with third party softwares like InkScape and ImageMagick to get PDF from SVG. The Batik implemenation had some issue so we have stopped supporting it in the latest versions. Please check here for InkScape: https://inkscape.org/en/doc/inkscape-man.html Also you may download the latest version of FusionCharts here: http://www.fusioncharts.com/ Thanks. -
setting space only at right side of the chart
Nabajeet replied to Ravikumar's topic in General usage
Hi, Using canvasPadding will add space both at the right and left of the canvas. What you can do is create an extra category at the end and set "showLabel" as 0 so that the label is hidden. Please check this fiddle for a demo: http://jsfiddle.net/nabajeet_fusioncharts/x7oz6kpr/ Thanks -
Hi, You must remove the link attribute . http://jsfiddle.net/4cyFz/56/ Thanks
-
Hi, Calling dispose() function on an instance of FusionCharts disposes the chart completely. This removes it from the DOM tree and also clears the entire chart object. As such you have to create a new instance of the chart and render it again. We have tried to replicate your issue but are not getting the problem you have stated. Please send us a sample of your code also let us know which version of FusionCharts you are using. Thanks.
-
Hi, Hope you are keeping well. Thank you for your patience. Could you please upgrade your current version to the latest, i.e, FusionCharts Suite v3.7, release yesterday that will resolve your reported issue? A basic feature of showing peak data is added. To make this feature work there are at present three attributes added on the Chart level. They are: showPeakData : (0/1) maxPeakDataLimit: A numeric value which will define the upper limit for peak data. Any data value which is above this value will be considered as a peak data. minPeakDataLimit: A numeric value which will define the lower limit for peak data. Any data value which is below this value will be considered as a peak data. To avail this licensed release, you would need to re-Download the entire package from the My Orders section of FusionCharts Product Update Center. PUC URL: www.fusioncharts.com/puc/ To download the Evaluation version of FusionCharts Suite XT v3.7, please visit the link: http://www.fusioncharts.com/download/ Hope this would resolve your issue. If you require any further assistance please do drop us a mail. Thanks.
-
x-axis data label moves up and down for StackedColumn2D chart
Nabajeet replied to kwong's topic in Bug Reports
Hi, We recommend you to use standard mode only of IE because quirks mode is complex and non-standard mode of browser. As such in quirks mode of IE if you are rendering the chart inside a table it is causing problems. Thanks -
Hi, Can you please upgrade to the latest version of FusionCharts and let us know if the issue is resolved. You can download the trial version here: http://www.fusioncharts.com/download/ Thanks
-
x-axis data label moves up and down for StackedColumn2D chart
Nabajeet replied to kwong's topic in Bug Reports
Hi, We are rendring the stacked chart using FusionCharts version 3.6.0 in a simple HTML page using json data in dataString method. We are rendering the charts in IE 8 browser through Spoon.net. If this is not the right method, please share with us the steps how to replicate your issue. We have shared our sample HTML page as an attachment. Thanks chart1.html -
Hi, Can you let us know which browser and FusionCharts version you are using. We are not getting the issue on our side using FusionCharts version 3.6.0 in FF, Chrome, IE 8,9. Thanks.
-
x-axis data label moves up and down for StackedColumn2D chart
Nabajeet replied to kwong's topic in Bug Reports
Hi, We were unable to replicate your issue on our side, please check image attached. Can you send us a scaled down sample of your xml/json data? Awaiting response. -
Hi, When you are using "dataFormat" as "xml" then "dataSource" attribute expects the data to be a string as such it is assuming newline as a character and showing errors in rendering. If you need to seperate the xml into different lines then you need to add a backslash at the end of each line like: 'datasource':'<chart caption="Revenues and Profits" subcaption="For last year" xaxisname="Month" pyaxisname="Amount (In USD)" syaxisname="Profit %" numberprefix="$" snumbersuffix="%" syaxismaxvalue="50" theme="fint">\ <categories>\ <category label="Jan" />\ <category label="Feb" />\ </dataset>\ <dataset seriesname="Profit %" parentyaxis="S" renderas="line" showvalues="0">\ <set value="25" />\ <set value="25" />\ </dataset>\ </chart>' Thanks.
-
Gauge trendpoints not displayed in Firefox but is displayed properly in IE
Nabajeet replied to senvyn's topic in Using FusionWidgets XT
Glad we could be helpful. Thanks.- 5 replies
-
- Firefox
- Trendpoints
-
(and 1 more)
Tagged with:
-
Gauge trendpoints not displayed in Firefox but is displayed properly in IE
Nabajeet replied to senvyn's topic in Using FusionWidgets XT
Hi, Please set the dashLen to some higher values, setting it to 1 pixel is making it invisible. http://jsfiddle.net/nabajeet_fusioncharts/cx8d9j9d/ Thanks.- 5 replies
-
- Firefox
- Trendpoints
-
(and 1 more)
Tagged with:
-
Gauge trendpoints not displayed in Firefox but is displayed properly in IE
Nabajeet replied to senvyn's topic in Using FusionWidgets XT
Hi, Please set the attribute startvalue in place of value like: <trendpoints> <point startvalue='4500' displayValue='Target' dashed='1' dashLen='1' dashGap='3' color='FFFFFF' thickness='2' /> </trendpoints> Please check this link for more info: http://docs.fusioncharts.com/tutorial-gauge-and-widgets-guide-angular-gauge-adding-trend-points.html Thanks.- 5 replies
-
- Firefox
- Trendpoints
-
(and 1 more)
Tagged with:
-
Trend lines are not working in multi series column 2d charts
Nabajeet replied to shueb's topic in General usage
You may check this fiddle: http://jsfiddle.net/fusioncharts/zKL3F/ For more info on trendline you may refer here: http://docs.fusioncharts.com/tutorial-configuring-your-chart-trend-lines-and-zones.html- 3 replies
-
- mscolumn2d trendlines
- multi series column 2d chart
-
(and 1 more)
Tagged with:
-
Trend lines are not working in multi series column 2d charts
Nabajeet replied to shueb's topic in General usage
Hi, Please make sure you have added the trendline object properly inside the data source. Also if your data is not in range with your trendline the trendline shall not appear i.e if your highest value is 4000 and your trendline starts at value 700000 definitely the trendline shall not appear. If these doesn't help please send us your whole JSON data. Thanks.- 3 replies
-
- mscolumn2d trendlines
- multi series column 2d chart
-
(and 1 more)
Tagged with: