psike

GRAF error with y-axis value

Recommended Posts

Good afternoon!

I noted the following bug in the new version 3.11.0

 

If the values on the Y axis are very small, sometimes there is no rounding, and unrounded number is displayed on the graph. Tried in different browsers - the problem persists.

 

For example, here are the data for the graph:

 



FusionCharts.ready(function(){
var revenueChart3 = new FusionCharts({
"type": "column2d",
"renderAt": "chart3",
"width": "395",
"height": "250",
"dataFormat": "json",
"dataSource": {
"chart": {
"showvalues": "1",
"plotgradientcolor": "",
"bgcolor": "FFFFFF",
"showalternatehgridcolor": "0",
"divlinecolor": "CCCCCC",
"showvalues": "1",
"showcanvasborder": "0",
"canvasborderalpha": "0",
"canvasbordercolor": "CCCCCC",
"canvasborderthickness": "1",
"captionpadding": "30",
"linethickness": "3",
"yaxisvaluespadding": "15",
"legendshadow": "0",
"legendborderalpha": "0",
"palettecolors": "#008ee4,#6baa01,#f8bd19",
"showborder": "1",
"animation": "1",
"caption": "name graf",
"captionFontSize": "12",
"numberPrefix": "",
"numbersuffix": "%",
"alignCaptionWithCanvas": "0",
"formatNumberScale": "0",
"formatNumber": "0",
"exportEnabled":"1",
"exportAtClient":"0",
"exportHandler":"http://ntc/js/fusioncharts/export-handlers/php-export-handler/index.php",
"exportAction":"download",
"exportFormats": "PNG="
},

"dataset": [{
"data": [
{
"label": "2014",
"value": "0.001"
},
{
"label": "2015",
"value": "0.005"
},
{
"label": "2016",
"value": "0.002"
} ]
}]

}
});


 

As well as a screen image:

post-70269-0-33233800-1470293926_thumb.png

 

Share this post


Link to post
Share on other sites
Hi,

 

A bug has been logged internally. Meanwhile, as a workaround, please try setting "formatNumber" attribute as 1 in the chart element.


You can also try the "decimals" attribute , which is  used to specify number of decimal places to which all numbers on the chart will be rounded to.




Please refer the fiddle below for implementation.




 


We will keep you posted once the issue has been fixed.

 


Hope this helps.

 


 

Thanks,



Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now