本文介绍了如何从CSV数据创建可缩放的图?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经从文件中加载了一些CSV数据,并且需要使用JavaScript进行绘制.理想情况下,用户可以放大整个图...

我的数据如下所示:

基准面,Uhrzeit,DINX,DINX,DINX,DINX,DINX,DINX,DINX,DINX
 15 . 03  .2010,09:16:51,1.95,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,09:19:12,2.41,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,09:19:17,1.95,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,09:21:56,19.72,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,09:40:36,19.72,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,10:09:45,18.50,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,10:09:50,19.00,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,10:09:55,18.50,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00 
 15 . 03  .2010,22:21:42,18.22,0.00,0.00,0.00,0.00, 0.00,0.00,0. 00  



什么样的库可用于执行此类操作?我没有太多的时间或经验,因此具有良好的文档和示例代码的东西将是很棒的...

最好的问候,

解决方案


I''ve loaded some CSV data from a file, and need to plot it using JavaScript. Ideally, users would be able to zoom in on the overall plot...

My data looks like this:

Datum,Uhrzeit,DINX,DINX,DINX,DINX,DINX,DINX,DINX,DINX
15.03.2010,09:16:51,1.95,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,09:19:12,2.41,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,09:19:17,1.95,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,09:21:56,19.72,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,09:40:36,19.72,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,10:09:45,18.50,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,10:09:50,19.00,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,10:09:55,18.50,0.00,0.00,0.00,0.00,0.00,0.00,0.00
15.03.2010,22:21:42,18.22,0.00,0.00,0.00,0.00,0.00,0.00,0.00



What sort of libraries are available for doing this sort of thing? I don''t have a lot of time or experience, so something with good documentation and sample code would be great...

Best Regards,

解决方案


Don''t ask for this here. We are not here to do your work for you.

Try looking
here[^]


这篇关于如何从CSV数据创建可缩放的图?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 23:54
查看更多