I have a gauge on my html page, defained like this:
<
span
kendo-radialgauge
=
"gauge.kendoGaugeInstance"
k-options
=
"gauge.options"
></
span
>
IT has multiple pointers and I need to update the values
How can I do it?
I tried the setOptions method similar to line chart :
kendoGaugeInstance.setOptions({
options: updatedOptions
});
but that doesn't work.
kendoGaugeInstance.redraw();
works somewhat, but it redraws it completely with all pointers animation from 0.
How can I do it properly?
Thanks