Vaadin Chart axis display

Hi,
I’m trying to set up a scatter chart, with the following characteristics:

  • The axes values are hidden
  • While hovering over a scatter point, the tooltip will show the point’s values

I can dig out the tooltip implementation out of the demo code, but I haven’t found a way to hide the axis values.

Thanks,

Found that:

xaxis.setLabels(new Labels(false));

is working for me :slight_smile: