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.
在浮动图表的垂直堆栈区域中。如何填充图案而不是填充颜色?有什么方法可以应用自己的 css 或在堆栈区域中填充图像。
您可以将任何您想要的东西放在 flot 占位符后面,并使画布透明。
设置选项grid.backgroundColor = null,你会得到你想要的:
grid.backgroundColor = null
var options = { grid: { backgroundColor:null } }; $.plot($('#placeholder'),data,options);