File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ If you need to [improve the bubble size comparability across several Charts](slu
128
128
MinSize="1"
129
129
MaxSize="200">
130
130
<ChartSeriesLabels Visible="true">
131
- <ChartSeriesLabelsMargin Top="20 " />
131
+ <ChartSeriesLabelsMargin Top="24 " />
132
132
</ChartSeriesLabels>
133
133
</ChartSeries>
134
134
<ChartSeries Type="ChartSeriesType.Bubble"
@@ -144,6 +144,8 @@ If you need to [improve the bubble size comparability across several Charts](slu
144
144
</ChartSeries>
145
145
</ChartSeriesItems>
146
146
147
+ <ChartLegend Position="@ChartLegendPosition.Top" />
148
+
147
149
</TelerikChart>
148
150
149
151
@code {
@@ -155,9 +157,9 @@ If you need to [improve the bubble size comparability across several Charts](slu
155
157
{
156
158
BubbleData.Add(new()
157
159
{
158
- XValue = i + 1 ,
159
- YValue1 = i + 1 ,
160
- YValue2 = (i + 1 ) * 2,
160
+ XValue = 3 + (int)Math.Pow(i, 2) ,
161
+ YValue1 = i + 2 ,
162
+ YValue2 = (i + 3 ) * 2,
161
163
SizeValue = (int)Math.Pow(2, i)
162
164
});
163
165
}
You can’t perform that action at this time.
0 commit comments