diff --git a/components/chart/types/bubble.md b/components/chart/types/bubble.md
index 12929af51..bbd1dd7ea 100644
--- a/components/chart/types/bubble.md
+++ b/components/chart/types/bubble.md
@@ -128,7 +128,7 @@ If you need to [improve the bubble size comparability across several Charts](slu
MinSize="1"
MaxSize="200">
-
+
+
+
@code {
@@ -155,9 +157,9 @@ If you need to [improve the bubble size comparability across several Charts](slu
{
BubbleData.Add(new()
{
- XValue = i + 1,
- YValue1 = i + 1,
- YValue2 = (i + 1) * 2,
+ XValue = 3 + (int)Math.Pow(i, 2),
+ YValue1 = i + 2,
+ YValue2 = (i + 3) * 2,
SizeValue = (int)Math.Pow(2, i)
});
}