While working on a project with Angular, I recently discovered the Kendo-Angular project available at . I successfully integrated Angular-Kendo into my project and it seems to be functioning well, except for updating models in the way I am accustomed to.
This project aligns perfectly with my needs, however, the documentation does not provide examples of how to update an Angular model so that it updates a Kendo data source.
For instance, here is a snippet of code:
$scope.data = new kendo.data.DataSource({
data: [{
name: "India",
data: [10, 7.943, 7.848, 9.284, 9.263, 9.801, 3.890, 8.238, 9.552, 6.855]
}, {
name: "World",
data: [1.988, 2.733, 3.994, 3.464, 4.001, 3.939, 1.333, 2.245, 4.339, 2.727]
}, {
name: "Russian Federation",
data: [4.743, 7.295, 7.175, 6.376, 8.153, 8.535, 5.247, 7.832, 4.3, 4.3]
}, {
name: "Haiti",
data: [0.253, 0.362, 3.519, 1.799, 2.252, 3.343, 0.843, 2.877, 5.416, 5.590]
}]
});
In Angular, one would expect something like this:
<input ng-model="data[0].data[0]" />
The input field should display 10
. However, when trying to update the value in the input box and reflect it in the graph, the graph does not update.
If anyone familiar with these libraries knows how to achieve this functionality, please share your insights. Does such support exist? Or is this library simply designed to enable Kendo to work with Angular without further capabilities?