Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在图表的开头,我希望线条从 0 到第一个数据点。这在 FLOT 中是否可能。
谢谢
$.plot($('#placeholder'), [data]); // is the format
在data数组中,您需要像[0,0]最初一样推送一个数组。例如,data数组将如下所示:
data
[0,0]
[0, 0], [1, 10],...