Chart
asked on 23 Aug 2023, 04:16 AM
| edited on 25 Aug 2023, 01:46 AM
Is possible store to database when click the chart and then showing them on chart ?
1 Answer, 1 is accepted
0
Georgi Denchev
Telerik team
answered on 25 Aug 2023, 10:24 AM
Hello,
I am not quite certain what the exact end result is supposed look like, however you can use one of the click events such as seriesClick or plotAreaClick and then make a request to your server with some parameters.
plotAreaClick: function(e) {
// send a server request when a click on the chart occurs.
$.ajax({...request config...});
}