Vaadin ScatterChart

Hello,

is it possible to set a individual radius for each DataSeriesItem in a Scatter Chart?

Maybe Bubble Chart is the solution in this case: https://demo.vaadin.com/charts/#BubbleChartExample ?

i also tested it with the Bubble Chart. I tried to set the Z-achses but it dosn´t work very well.
A other problem i have, is to edit the bubbles or points with css. How can i acces the Items in my style.css?

If you need a 3D scatter with points with different radius you can set a custom radius in the point marker like this:

DataSeriesItem3d point = new DataSeriesItem3d(x, y, z); point.getMarker().setRadius(value); What do you need to configure via css? there’s probably a way to configure it with java API.

Hope this helps,

Guille