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.
我正在使用散景图制作折线图,并且我希望标记实际点(线穿过它们),而不仅仅是线本身。我怎样才能做到这一点?我浏览了文档和用户指南,但似乎找不到答案。谢谢!
假设您使用的是bokeh.plotting您只需要按照您希望它们呈现的顺序调用您想要的字形方法:
bokeh.plotting
p = figure() p.line(x, y) p.circle(x, y)