In my ASP. Net MVC App, I would like to add Bar Chart with X Axis labels as images.
Ex: Category wise Sales Chart I want to display is Category as a Image in place of text.
Is this possible in Chart API?. If possible could you please share details.

var templateContent = $("#tmpl_jailcard").html();
var template = kendo.template(templateContent);
$("#scr_jailcard").html(template(data));
app.navigate("#scr_jailcard");<br>var templateContent = $("#tmpl_jailcard").html();
var template = kendo.template(templateContent);
$("#scr_jailcard").html(template(data));
app.navigate("#scr_jailcard");
// The following simulates the problem by re-applying template and navigating to it
$("#scr_jailcard").html(template(data));
app.navigate("#scr_jailcard");

$plugin.closest('span').append('<img src ="srb-images/srb-delete.png" class="bar">').find('img').kendoTouch({ tap: function(e) {
console.log(e.touch.target.attr('class') + " was tapped");
e.touch.target.prev().focus();
}
});
});
@(Html.Kendo().Grid<lobotask.web.ViewModel.TaskViewModel>() .Name("Grid") .Columns(columns => { //columns.Bound(t => t.).Title("ID"); columns.Bound(t => t.Name).Title("Name").Groupable(true); columns.Bound(t => t.Description).Title("Beschreibung").Groupable(false); columns.Bound(t => t.RecipientsText).Title("Empfänger").Groupable(true); columns.Bound(t => t.Status).Title("Status").Groupable(true).Width(100); columns.Bound(t => t.Status).Title("Result").Groupable(true).Width(100); }) .Pageable() .Sortable() // .Resizable(t => t.Columns(true)) .Scrollable() .Filterable() .Groupable() .DataSource(dataSource => dataSource .Ajax() .Read(read => read.Action("MyTasks", "Tasks")) //.Server() //.Read( ) )