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.
使用浮点图,我需要将背景分成两种颜色。它不会正好在中间,它会有轻微的偏移。
据我所见,我在互联网上找不到任何提供此信息的文件。如果有人能指出我正确的方向,那就太好了。如果可能的话,有人可以输入代码来说明如何做到这一点吗?
如果我正确理解您的问题,最简单的方法是使用网格 markings选项。
markings
例如:
$.plot($("#placeholder"), [ d1 ], {grid: { markings: [ {xaxis: { from: 0, to: 6 },color: "#C11B17"}, {xaxis: { from: 6, to: 100},color: "#FDD017"} ]} });
产生:
在这里拉小提琴。