I'm trying to use a template on my category axis labels using kendo for ASP.CORE. I tried the code snippet below and now the labels are blank even though my graph has values. I'm trying to accomplish this without building the grid via jquery, but it appears that all the support is on the jquery way of handling this. Is this possible for ASP.NET Core?
.CategoryAxis(axis => axis
.Labels(labels => labels
.Template(
"#= series.name #: #= value #"
)
)