Remove $ sign from stock charts

时间:2015-07-13 21:13:54

标签: javascript kendo-ui telerik kendo-dataviz kendo-chart

Has anyone been able to remove the $ sign from a Kendo Stockchart? I am trying to use this chart as it has the navigation box but I am not using it for financial information, but rather quantity over time.

I've tried changing the template for the value axis, but without success.

1 个答案:

答案 0 :(得分:0)

您应该可以使用format选项实现此目的:

valueAxis: [{
    labels: {
        format: "{0}"
    }
}