-1

I am creating a seismic recording app in IOS. I want to show seismograph chart in my app like this. I have searched a lot on google and github but unable to find EXACTLY same visual. I am currently using "Charts" library from github but it is not producing same visual effect. Please suggest me just name of library.

AtulParmar
  • 4,358
  • 1
  • 24
  • 45
Salman Khalid
  • 543
  • 5
  • 23

2 Answers2

1

use LineChartView of this {https://github.com/danielgindi/Charts} library. By default your view will not resemble to seismograph but you need to customise it. To do this, whenever you add a point to graph, also add the point of same value but negative value. For example you want to show an earth-quake of magnitude 5. You should add a point of value 5. At the same time also add a point of value -5. This will give view like seismograph. If you can’t understand then reply, I will provide you code for doing this.

Umer Arif
  • 32
  • 4
0

What about this https://github.com/vegather/GraphView ? It will not compile unless you build against a device (even a generic one) because it uses metal.

Fiveagle
  • 1,005
  • 8
  • 11