是否有一個JavaScript圖表,看起來像這樣: ,你可以把點的準確性放在這個。因此,不是從黑到紅,而是在末端爲紅色,在中間爲綠色,並且距離中心越遠,讀數越不準確?準確性熱棒
Q
準確性熱棒
0
A
回答
1
我認爲你正在尋找這樣的事情plot.ly colorscale:
https://plot.ly/javascript/heatmap-and-contour-colorscales/#hot-colorscale
如果不爲你工作,你需要更多的控制,你可以使用d3.js色標直接
http://synthesis.sbecker.net/articles/2012/07/16/learning-d3-part-6-scales-colors
var color = d3.scale.linear()
.domain([-1, 0, 1])
.range(["red", "white", "green"]);
color(-1) // "#ff0000" red
color(-0.5) // "#ff8080" pinkish
color(0) // "#ffffff" white
color(0.5) // "#80c080" getting greener
color(0.7) // "#4da64d" almost there..
color(1) // "#008000" totally green!
相關問題
- 1. NSTimer準確性
- 2. tf.metrics.mean_squared_error的準確性
- 3. 圖釘準確性
- 4. assertEquals的準確性?
- 5. float32的準確性
- 6. sklearn randomforest準確性
- 7. pySerial list_port準確性
- 8. iphone - distanceFromLocation準確性
- 9. Android IMU準確性
- 10. Facebook API準確性
- 11. 切棍棒:黑客熱身挑戰
- 12. 培訓準確性增加,測試準確性穩定
- 13. JavaFX的BARCHART棒對準
- 14. MSTest魯棒性
- 15. 類型不準確性
- 16. Androids sdk softkeyboard準確性
- 17. 地理編碼準確性
- 18. 獲取myLocationOverlay的準確性
- 19. Windows phone 8 GeoLocator準確性
- 20. CCLocation(iPhone SDK)的準確性
- 21. C#的FFT不準確性
- 22. ZHEEV和ZHEEVD的準確性
- 23. MLP預測準確性
- 24. Crystal Report Viewer準確性
- 25. CLLocation海拔準確性
- 26. 線性漸變不準確
- 27. HTML5中的GPS準確性
- 28. LibSVM的準確性下降
- 29. Neo4j的數目準確性
- 30. 位置服務準確性
不應該是太難寫,有效地你只需要編寫一個映射到你有p中的設計滑塊控件在上面漫步。看到這個例子:https://jqueryui.com/slider/。我從你的問題中推測你將需要指定滑塊應該指向的值。在這種情況下,也可以看看這裏https://forum.jquery.com/topic/change-value-of-slider-dynamically –