Kendo UI chart not resizing?

后端 未结 6 1822
温柔的废话
温柔的废话 2021-01-17 23:55

\"enter

I have a Kendo ui chart which displays a column chart from a dynamic data sour

6条回答
  •  耶瑟儿~
    2021-01-18 00:22

    I fixed it by adding a small delay after calling the CreateChart() function as below:

    CreateChart(this.id, this.id + " this week", "week", null);
        sleep(1000);
    

    its working fine now

提交回复
热议问题