Is there any way to Add multiple vertical axis dynamically to Line chart in Kendo ui? right now am using the following snippet for 2 vertical axis in kendo ui Line chart
valueAxes: [{
name: "test",
color:"#07eeff",
labels: {
format: "{0}pu"
}
}, {
name: "test1",
color:"#07eeff",
labels: {
format: "{0}C"
}
}
],
I am using the following link for reference: http://docs.telerik.com/kendo-ui/getting-started/dataviz/chart/overview#multiple-value-axes
If there is any way to Add multiple vertical axis dynamically(through JSON Data) to Line chart in Kendo-ui then please let me know.