AngularJS chart library

Multi tool use
AngularJS chart library
I'm actually searching for an AngularJS library which makes charts, I found some but none can make charts with handlers for clickable points.
I need a library where we can click on the chart points to "select them", but after hours of search I still couldn't find any.
Does a library like this exist or will I have to make one?
Thanks.
No, line charts with points clickable or "selectable" , it's for a function who need two entry points and output the middle point.
– Jessy
Jul 2 at 14:22
1 Answer
1
You can use Highcharts library to accomplish the same,t o make the points on the chart clickable set allowPointSelect as true
plotOptions:{
series:{
allowPointSelect: true
}
}
now you handle the click event or selection event from the
plotOptions:{
series:{
point:{
events:{
select: function(e){
//your logic here
}
}
}
}
}
DEMO
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
you mean drilled down chart?
– Sajeetharan
Jul 2 at 14:19