how do I show animation while loading kendo chart data?

kendo ui chart loading progress


HTML code-sample

<div id="example">
   <div class="demo-section k-content wide sel-chart-wrapper">
       <div id="chart"></div>
   </div>
</div>

JQuery code-sample

 $(function () {
        //Used to display progress.
        kendo.ui.progress($("#chart"), true);

        //Used to hide displayed progress.
        kendo.ui.progress($("#chart"), false);
    });

For Kendo DataSource

  dataSource: {
        requestStart: function () {
            kendo.ui.progress($("#chart"), true);
        },
        requestEnd  : function () {
            kendo.ui.progress($("#chart"), false);

        }

    }

I think, It might help you! thank you!

ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

kendo ui chart loading progress kendo ui chart loading progress Reviewed by Anil Singh on 6:00 AM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^