Here i'm going to do the KendoUI Chart using AngularJS and getting dynamic data from angular services.
First need to down-lode the required js files for KendoUI and AngularJS like below image,
Above image i added the options is "optTest" - its setting the KendoUI chart in control,
And the data source name is "dsTest" - its assign data dynamically from services.
In Ctrl Side
In above image
$scope.tempDSTest[] = before assign the dynamic data we assign the empty dataset , because of some time not populated the chart while dynamic dataset assign.
$scope.optTest = Its implement the some setting for the kenodui chart , here using i'm using area chart settings.
$scope.dsTest = its the empty dataset or datasource name.
After that i called the testServices.getTestdata() method, In this method i used the web api url for getting data from server
Based on response i assigned to the data source like $scope.dsTest.data(response.data)
I called setup function at end of the control.
Screen
i hope this helpful , have any new idea or need to change something else please let me know.
Thanks in Advance :) ;)
First need to down-lode the required js files for KendoUI and AngularJS like below image,
In html page
Above image i added the options is "optTest" - its setting the KendoUI chart in control,
And the data source name is "dsTest" - its assign data dynamically from services.
In Ctrl Side
In above image
$scope.tempDSTest[] = before assign the dynamic data we assign the empty dataset , because of some time not populated the chart while dynamic dataset assign.
$scope.optTest = Its implement the some setting for the kenodui chart , here using i'm using area chart settings.
$scope.dsTest = its the empty dataset or datasource name.
After that i called the testServices.getTestdata() method, In this method i used the web api url for getting data from server
Based on response i assigned to the data source like $scope.dsTest.data(response.data)
I called setup function at end of the control.
Screen
i hope this helpful , have any new idea or need to change something else please let me know.
Thanks in Advance :) ;)