Hi Team,
I am trying to create a bubble chart as one of the layer in a composite chart. I was able to create it, but I need to remove the background color of the bubbles in the chart. I need the bubbles to be transparent with borders.
Regards,
Anandhavel.J
You can add a paint element to the XYZ series that you want to have transparent bubbles.XYZSeries series = new XYZSeries();...PaintElement pe = new PaintElement();pe.Fill = Color.Transparent;pe.Stroke = Color.Black;series.PEs.Add(pe);
This will give you transparent bubbles with a black stroke.