Javascript chart library that supports follow-up on line charts with mobile

I am looking for a html5 / css / javascript chart library that supports “follow” in line charts using a mobile phone. To be precise, what I refer to “follows” on line charts, here are some good examples:

even a little different, this one would be nice and

I did some tests using the extensive comparison here . Unfortunately, I could not find a demo with "follow" that worked out of the box with Chrome and Chrome Android. Chrome is my target browser, now I'm writing a non-profit application just for fun.

Most of these implementations seem to be based on: the hover css selector, which is not available on mobile devices. I tried to connect the logic: hover with "touchmove", but it was not easy (with a rickshaw, at least).

My question is: do I have a library or option in existing libraries or should I continue to try to implement my own logic?

+4
source share
2 answers

You missed amCharts in your list, it supports “should”, for example: http://www.amcharts.com/javascript-charts/line-with-duration-on-value-axis/

Note that you must set chart.panEventsEnabled = true for touch events to work on mobile devices.

Disclaimer - I am the author of amCharts and amMap.

+1
source

you can try echarts, it is really good at rendering big data and does supoort "follow", here is an example and code

http://echarts.baidu.com/gallery/editor.html?c=doc-example/scatter-dataZoom-all

-one
source

Source: https://habr.com/ru/post/1492276/


All Articles