Hi,
Angular expression in template
I found in quiet a few places in kendo charts, angular expressions in templates are not compiled like in other widget, like grid. Few places I found are:
- valueAxis label template:
- series tooltip template
I want to use angular expression to scale the value by thousands, or millions depending on selected option​. So $23,000 scale by thousands become $23k. But now, the angular expression is ignored.
live example: http://plnkr.co/edit/oe6Hzr92VARij1jOtUV6?p=preview
Scaling Specifier in string format
I don't really need angular expression if the kendo's default string format support the Scaling Specifier (,) like in c#.
"," serves as both a group separator and a number scaling specifier. As a group separator, it inserts a localized group separator character between each group. As a number scaling specifier, it divides a number by 1000 for each comma specified.
Group separator specifier:
2147483647 ("##,#", en-US) -> 2,147,483,647
2147483647 ("##,#", es-ES) -> 2.147.483.647
Scaling specifier:
2147483647 ("#,#,,", en-US) -> 2,147
2147483647 ("#,#,,", es-ES) -> 2.147
Can you get the templates to read angular expression or match the scaling specifier in c# string format? Or better yet make both them work?
Best,
Ama