Greetings, I would need to group the elements of a Kendochart series, so that they are separated as follows:
Group title 1 :
Series 1.
Series 2.
Group title 2 :
Series 3.
Series 4.
I tried to do it with a template in the label as follows:
legend: {
labels: {
template: kendo.template($("legend-template").html())
}
},
Y en el Template, para luego acceder a través del ID:
<script id="legend-template" type="text/x-kendo-template">
<div id="Leyenda"> #: text # </div>
</script>
</code>
Thanks in advance, Greetings.