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.
如何在图表中添加光标hover监听器?vaadin
hover
vaadin
我想将光标的图标更改为手形或类似图标以指示图表中的条形可单击?
public static final Cursor POINTER
在 java 中提供您的图表 ID。
myChart.setId("forzaJuve");
然后在你的主题中,你可以这样写:
@import "../valo/valo.scss"; @mixin mytheme { @include valo; #forzaJuve:hover { *Do whatever you want to do here* }
确保重新编译并执行 clean & build 以保存所有内容。希望我帮助:)