Important Notice - Forums is archived
To simplify things and help our users to be more productive, we have archived the current forum and focus our efforts on helping developers on Stack Overflow. You can post new questions on Stack Overflow or join our Discord channel.

Vaadin lets you build secure, UX-first PWAs entirely in Java.
Free ebook & tutorial.
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?
Christian Pitters: Hello,
is it possible to set a individual radius for each DataSeriesItem in a Scatter Chart?
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