When I pass the following chart to kendo the value 55% on the value axis is presented as 55.0% instead of as a whole number, this problem happens only at 55% all the other values are shown as whole numbers. Why is Kendo forcing this value have a decimal place of 1? Many thanks,
Peter
``` $scope.chart: {
"seriesDefaults": {
"multiseries": false,
"type": "column"
},
"title": {
"text": null,
"align": "left"
},
"legend": {
"position": "top",
"visible": true
},
"series": [
{
"color": "#83c774",
"data": [
{
"value": 1.7985
},
{
"value": 101
},
{
"value": 81
}
],
"name": "Nov 2015",
"padding": 40
},
{
"color": "#8ed4c4",
"data": [
{
"value": 27
},
{
"value": 121
},
{
"value": 71
}
],
"name": "Dec 2015",
"padding": 40
}
],
"categoryAxis": {
"categories": [
"small pancakes",
"rainbow",
"Spaghetti Colours"
],
"labels": {
"rotation": 315
}
},
"valueAxis": {
"min": 0.5,
"max": 0.9,
"title": {
"text": null
},
"labels": {
"format": "{0:#.#%}"
}
},
"tooltip": {
"format": "{0:#.#%}",
"visible": true
}
} ```
Peter
``` $scope.chart: {
"seriesDefaults": {
"multiseries": false,
"type": "column"
},
"title": {
"text": null,
"align": "left"
},
"legend": {
"position": "top",
"visible": true
},
"series": [
{
"color": "#83c774",
"data": [
{
"value": 1.7985
},
{
"value": 101
},
{
"value": 81
}
],
"name": "Nov 2015",
"padding": 40
},
{
"color": "#8ed4c4",
"data": [
{
"value": 27
},
{
"value": 121
},
{
"value": 71
}
],
"name": "Dec 2015",
"padding": 40
}
],
"categoryAxis": {
"categories": [
"small pancakes",
"rainbow",
"Spaghetti Colours"
],
"labels": {
"rotation": 315
}
},
"valueAxis": {
"min": 0.5,
"max": 0.9,
"title": {
"text": null
},
"labels": {
"format": "{0:#.#%}"
}
},
"tooltip": {
"format": "{0:#.#%}",
"visible": true
}
} ```