Hello,
How to format the yaxis label based on the culture? The following code always renders the yaxis in "en" format instead of "fr", when the user loaded in "fr" mode. Y axis will be having amount value.
<script src="js/kendo.all.min.js"></script><script src="js/kendo.culture.en-CA.min.js"></script><script src="js/kendo.culture.fr-CA.min.js"></script>kendo.culture("<%=GetCultureString()%>");<PlotArea><YAxis><LabelsAppearance DataFormatString="C" /></YAxis>
I tried this as well, but didnt work
<YAxis><LabelsAppearance> <ClientTemplate>#if(value > 0){# #= kendo.format(\'{0:C1}\', value)# #}#</ClientTemplate></LabelsAppearance>