Both:
and:
Do not share the tooltip at all.
The first one renders the SINGLE template correctly, but nothing is shared. The second one (using the template from the documentation) just shows the single value, no sharing. Am I missing something?
$("#chart").kendoChart({
...,
tooltip: {
visible: true,
shared: true,
template: "#= category # #= series.name #: #= value #"
}
});
$("#chart").kendoChart({
...,
tooltip: {
visible: true,
shared: true,
sharedTemplate: kendo.template($("#template").html())
template: "#= category # #= series.name #: #= value #"
}
});
The first one renders the SINGLE template correctly, but nothing is shared. The second one (using the template from the documentation) just shows the single value, no sharing. Am I missing something?