Hi
I've implemented a bar chart to show the amount a customer has bought in USD but on the Y axis the 0 is showing with three decimals.
Understandable since I've added "n3" to the format property but how to remove the trailling zeros from it?
$("#chart_year").kendoChart({
title: {
text: '"Year To Date Purchases'
},
seriesDefaults: {
type: "column",
},
series: [
{
//Dummy Data before getting real data
data: [122.142, 222.672],
color: "rgb(0,125,195)",
name: "Total",
},
],
legend: {
labels: {
font: "Jost",
}
},
valueAxis: {
labels: {
culture: "en-US",
format: "${0:n3}",
font: "Jost"
},
axisCrossingValue: 0
},
categoryAxis: {
categories: previousYearsArray.reverse(),
labels: {
padding: {top: 5},
font: "Jost"
},
majorGridLines: {
visible: true
}
},
tooltip: {
visible: true,
format: "{0}",
template: "#= series.name #: $#= value #"
}
});
I was able to find a solution using the template property:
template: "#= kendo.format('{0:c}',value*1000) #",