如何隐藏Vaadin图表中的图例。 我试着评论程序中定义的图例
Legend legend = new Legend();
legend.setLayout(LayoutDirection.VERTICAL);
legend.setBackgroundColor(new SolidColor("#FFFFFF"));
legend.setVerticalAlign(VerticalAlign.BOTTOM);
legend.setShadow(true);
conf.setLegend(legend);
对此进行评论后,图表上只剩下一个颜色按钮。
答案 0 :(得分:0)
configuration.getLegend().setEnabled(false);