Skip to content

Commit 84f7213

Browse files
Merge branch 'development' into EJ2-882857-Validation
2 parents 94d92c3 + 39f00d1 commit 84f7213

File tree

240 files changed

+5874
-1350
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

240 files changed

+5874
-1350
lines changed

blazor-toc.html

Lines changed: 25 additions & 3 deletions
Large diffs are not rendered by default.

blazor/3D-chart/appearance.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ The default color of series or points can be customized by providing a custom co
5656
}
5757
5858
```
59+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BjVfXxCBqRuWmxlT?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
5960

6061
![Blazor Column 3D Chart with Custom Color Palette](images/appearance/blazor-column-chart-custom-color-palette.png)
6162

@@ -99,6 +100,7 @@ The color for the points can be bound from the `DataSource` for the series by ut
99100
}
100101
101102
```
103+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rtrfDxMrKwXpXlgX?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
102104

103105
![Blazor Column 3D Chart with PointColorMapping](images/appearance/blazor-column-chart-with-point-color.png)
104106

@@ -162,6 +164,7 @@ The data label and fill color of each data point can be customized using the `Po
162164
}
163165
164166
```
167+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BZBzXdsrUGMqoJpK?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
165168

166169
![Blazor Column 3D Chart with Point level customization](images/appearance/blazor-column-chart-point-level-customization.png)
167170

@@ -209,6 +212,7 @@ The background color and border of the 3D chart can be customized using the `Bac
209212
}
210213
211214
```
215+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rDhptRCLgGMkWnGY?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
212216

213217
![Blazor Column 3D Chart with Custom Background and Border](images/appearance/blazor-column-chart-custom-background-and-border.png)
214218

@@ -253,6 +257,7 @@ The 3D chart's margin can be set from its container using the `Chart3DMargin` pr
253257
}
254258
255259
```
260+
{% previewsample "https://blazorplayground.syncfusion.com/embed/htLftnshAmBJsYEA?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
256261

257262
![Blazor Column 3D Chart with Custom Margin](images/appearance/blazor-column-chart-custom-margin.png)
258263

@@ -298,6 +303,7 @@ To customize the animation for a particular series, the `Chart3DAnimation` prope
298303
}
299304
300305
```
306+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rDrpjRsrAmhveiAm?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
301307

302308
## Chart rotation
303309

@@ -339,6 +345,7 @@ The 3D chart can be rotated by using the `EnableRotation` property.
339345
}
340346
341347
```
348+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VjVzNHWLKwqqyvoo?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
342349

343350
## Title
344351

@@ -380,6 +387,7 @@ The 3D chart can be given a title by using `Title` property, to show the informa
380387
}
381388
382389
```
390+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rNrJZRihUwKPsGvh?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
383391

384392
![Blazor Column 3D Chart with Title](images/appearance/blazor-column-chart-title.png)
385393

@@ -423,6 +431,7 @@ By using the `Position`property in `TitleStyle`, the `Title` can be positioned
423431
}
424432
425433
```
434+
{% previewsample "https://blazorplayground.syncfusion.com/embed/LNhTDnsBKczVydKx?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
426435

427436
![Blazor Column 3D Chart with Title](images/appearance/blazor-column-chart-title-position.png)
428437

@@ -464,6 +473,7 @@ The custom option is used to position the title anywhere in the 3D chart using `
464473
}
465474
466475
```
476+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VDBftnWBgwTPesmR?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
467477

468478
![Blazor Column 3D Chart with Custom Title](images/appearance/blazor-column-chart-title-custom.png)
469479

@@ -476,7 +486,7 @@ The title can be aligned to the near, far, or center of the 3D chart by using th
476486
@using Syncfusion.Blazor.Chart3D
477487
478488
<SfChart3D Title="Olympic Medals" WallColor="transparent" EnableRotation="true" RotationAngle="7" TiltAngle="10" Depth="100">
479-
<Chart3DTitleStyle TextAlignment="Alignment.Far"></Chart3DTitleStyle>
489+
<Chart3DTitleStyle TextAlignment="Syncfusion.Blazor.Chart3D.Alignment.Far"></Chart3DTitleStyle>
480490
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category">
481491
</Chart3DPrimaryXAxis>
482492
@@ -507,6 +517,7 @@ The title can be aligned to the near, far, or center of the 3D chart by using th
507517
}
508518
509519
```
520+
{% previewsample "https://blazorplayground.syncfusion.com/embed/LXVzXdiBKwdsnLib?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
510521

511522
![Blazor Column 3D Chart Title with Text Alignment](images/appearance/blazor-column-chart-title-alignment.png)
512523

@@ -519,7 +530,7 @@ The `TitleStyle` property of the 3D chart provides options to customize the titl
519530
@using Syncfusion.Blazor.Chart3D
520531
521532
<SfChart3D Title="Olympic Medals" WallColor="transparent" EnableRotation="true" RotationAngle="7" TiltAngle="10" Depth="100">
522-
<Chart3DTitleStyle FontSize="18px" Color="red" TextOverflow="@TextOverflow.Wrap"></Chart3DTitleStyle>
533+
<Chart3DTitleStyle FontSize="18px" Color="red" TextOverflow="Syncfusion.Blazor.Chart3D.TextOverflow.Wrap"></Chart3DTitleStyle>
523534
524535
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category">
525536
</Chart3DPrimaryXAxis>
@@ -551,6 +562,7 @@ The `TitleStyle` property of the 3D chart provides options to customize the titl
551562
}
552563
553564
```
565+
{% previewsample "https://blazorplayground.syncfusion.com/embed/hjBzDHirqQwNwVvM?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
554566

555567
![Blazor Column 3D Chart Title with Customization](images/appearance/blazor-column-chart-title-with-customization.png)
556568

blazor/3D-chart/axis-customization.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ The title for the axis can be added by using the `Title` property. It helps to p
5050
}
5151
5252
```
53+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VXhJDdChpXSmCYrG?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
5354

5455
![Blazor Column 3D Chart with Axis Title](images/axis-customization/blazor-column-chart-axis-title.png)
5556

@@ -93,6 +94,7 @@ The title can be rotated from 0 to 360 degree by using the `TitleRotationAngle`
9394
}
9495
9596
```
97+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rjLJXdWBfZniAVZI?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
9698

9799
![Blazor Column 3D Chart with Axis Title Rotation](images/axis-customization/blazor-column-chart-axis-title-rotation.png)
98100

@@ -135,6 +137,7 @@ The width, color, and height of the minor and major tick lines can be custo
135137
}
136138
137139
```
140+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rjLJtxChftnfOPTu?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
138141

139142
![Blazor Column 3D Chart with Custom Tick Lines](images/axis-customization/blazor-column-chart-custom-tick-lines.png)
140143

@@ -177,6 +180,7 @@ The width and color of the minor and major grid lines can be customized by usin
177180
}
178181
179182
```
183+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rZhzjxWLJXbLjntW?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
180184

181185
![Blazor Column 3D Chart with Custom GridLines](images/axis-customization/blazor-column-chart-custom-gridline.png)
182186

@@ -222,6 +226,7 @@ In addition to primary X and Y axis, n number of axis can be added to the chart.
222226
}
223227
224228
```
229+
{% previewsample "https://blazorplayground.syncfusion.com/embed/LNhTDxirztleaKrC?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
225230

226231
![Blazor 3D Column Chart with Multiple Axes](images/axis-customization/blazor-column-chart-multiple-axes.png)
227232

@@ -264,6 +269,7 @@ When an axis is inversed, highest value of the axis comes closer to origin and v
264269
}
265270
266271
```
272+
{% previewsample "https://blazorplayground.syncfusion.com/embed/LDrJjxWLpXlYDizR?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
267273

268274
![Blazor Column 3D Chart with Inversed Axis](images/axis-customization/blazor-column-chart-inversed-axis.png)
269275

@@ -305,6 +311,7 @@ To place an axis opposite from its original position, set the `OpposedPosition`
305311
}
306312
307313
```
314+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VtBzZHWhJZuVFHfl?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
308315

309316
![Blazor Column 3D Chart Axis in Opposed Position](images/axis-customization/blazor-column-chart-axis-at-opposed-position.png)
310317

blazor/3D-chart/axis-labels.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ When the axis labels overlap with each other, `LabelIntersectAction` property i
2222
@using Syncfusion.Blazor.Chart3D
2323
2424
<SfChart3D Title="Olympic Medals" WallColor="transparent" EnableRotation="true" RotationAngle="7" TiltAngle="10" Depth="100">
25-
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category" LabelIntersectAction="LabelIntersectAction.Hide" />
25+
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category" LabelIntersectAction="Syncfusion.Blazor.Chart3D.LabelIntersectAction.Hide" />
2626
2727
<Chart3DSeriesCollection>
2828
<Chart3DSeries DataSource="@MedalDetails" XName="X" YName="Y" Type="Chart3DSeriesType.Column" />
@@ -55,6 +55,7 @@ When the axis labels overlap with each other, `LabelIntersectAction` property i
5555
5656
5757
```
58+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BtBTDnMVpitELVMq?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
5859

5960
![Hiding Smart Axis Label in Blazor Column 3D Chart](images/axis-labels/blazor-column-chart-hide-smart-axis-label.png)
6061

@@ -65,7 +66,7 @@ When the axis labels overlap with each other, `LabelIntersectAction` property i
6566
@using Syncfusion.Blazor.Chart3D
6667
6768
<SfChart3D Title="Olympic Medals" WallColor="transparent" EnableRotation="true" RotationAngle="7" TiltAngle="10" Depth="100">
68-
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category" LabelIntersectAction="LabelIntersectAction.Rotate45" />
69+
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category" LabelIntersectAction="Syncfusion.Blazor.Chart3D.LabelIntersectAction.Rotate45" />
6970
7071
<Chart3DSeriesCollection>
7172
<Chart3DSeries DataSource="@MedalDetails" XName="X" YName="Y" Type="Chart3DSeriesType.Column" />
@@ -97,6 +98,7 @@ When the axis labels overlap with each other, `LabelIntersectAction` property i
9798
}
9899
99100
```
101+
{% previewsample "https://blazorplayground.syncfusion.com/embed/hXLptnWBJMsfXNjH?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
100102

101103
![Blazor Column 3D Chart with Smart Axis Label in Rotate45](images/axis-labels/blazor-column-chart-axis-label-in-rotate45.png)
102104

@@ -107,7 +109,7 @@ When the axis labels overlap with each other, `LabelIntersectAction` property i
107109
@using Syncfusion.Blazor.Chart3D
108110
109111
<SfChart3D Title="Olympic Medals" WallColor="transparent" EnableRotation="true" RotationAngle="7" TiltAngle="10" Depth="100">
110-
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category" LabelIntersectAction="LabelIntersectAction.Rotate90" />
112+
<Chart3DPrimaryXAxis ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category" LabelIntersectAction="Syncfusion.Blazor.Chart3D.LabelIntersectAction.Rotate90" />
111113
112114
<Chart3DSeriesCollection>
113115
<Chart3DSeries DataSource="@MedalDetails" XName="X" YName="Y" Type="Chart3DSeriesType.Column" />
@@ -139,6 +141,7 @@ When the axis labels overlap with each other, `LabelIntersectAction` property i
139141
}
140142
141143
```
144+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VtBJjnsLJMrjzDrD?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
142145

143146
![Blazor Column 3D Chart with Smart Axis Label in Rotate90](images/axis-labels/blazor-column-chart-axis-label-in-rotate90.png)
144147

@@ -152,7 +155,7 @@ use the `EdgeLabelPlacement` property in axis, which moves the label inside t
152155
@using Syncfusion.Blazor.Chart3D
153156
154157
<SfChart3D Title="Olympic Medals" WallColor="transparent" EnableRotation="true" RotationAngle="7" TiltAngle="10" Depth="100">
155-
<Chart3DPrimaryXAxis EdgeLabelPlacement="EdgeLabelPlacement.Shift" ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category">
158+
<Chart3DPrimaryXAxis EdgeLabelPlacement="Syncfusion.Blazor.Chart3D.EdgeLabelPlacement.Shift" ValueType="Syncfusion.Blazor.Chart3D.ValueType.Category">
156159
</Chart3DPrimaryXAxis>
157160
158161
<Chart3DSeriesCollection>
@@ -182,6 +185,7 @@ use the `EdgeLabelPlacement` property in axis, which moves the label inside t
182185
}
183186
184187
```
188+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rXVpDnsLTsLcphWe?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
185189

186190
![Displaying Blazor Chart Axis Label in Edge Position](images/axis-labels/blazor-chart-axis-label-in-edge.png)
187191

@@ -244,3 +248,4 @@ The labels will be rendered based on the count in the `MaximumLabels` property p
244248
}
245249
246250
```
251+
{% previewsample "https://blazorplayground.syncfusion.com/embed/htBJNxCrTWKrGBCU?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}

blazor/3D-chart/category-axis.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ The category axis is the horizontal axis of a 3D chart that shows text values ra
4646
}
4747
4848
```
49+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rNhTZdMLTMTKyfTL?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
4950

5051
![Blazor Column 3D Chart with Default Axis](images/category-axis/blazor-chart-default-axis.png)
5152

@@ -88,6 +89,7 @@ By default, category axis labels are placed between ticks in an axis. It can als
8889
}
8990
9091
```
92+
{% previewsample "https://blazorplayground.syncfusion.com/embed/hjLJjHsLTWRHhqRc?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
9193

9294
![Changing Labels Position in Blazor 3D Chart](images/category-axis/blazor-diagram-label-position.png)
9395

@@ -130,6 +132,7 @@ The range of the category axis can be customized using `Minimum`, `Maximum`, and
130132
}
131133
132134
```
135+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VDBfNxMLficgvSbx?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
133136

134137
![Changing Blazor Column 3D Chart Axis based on Range and Interval](images/category-axis/blazor-chart-axis-range-and-interval.png)
135138

@@ -179,5 +182,6 @@ The category axis can also be rendered based on the index values of the data sou
179182
}
180183
181184
```
185+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VXBTjniVJWQPizAl?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
182186

183187
![Blazor 3D Chart with Indexed Category Axis](images/category-axis/blazor-chart-index-category-axis.png)

blazor/3D-chart/chart-dimensions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ The 3D chart can be rendered to its container size and it can be set via inline
4949
}
5050
5151
```
52+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VtrJtdsrpsPezXYL?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
5253

5354
![Changing Blazor 3D Chart Size as Fit to Container](images/chart-dimensions/blazor-chart-size-for-container.png)
5455

@@ -94,6 +95,7 @@ The size of the 3D chart can be set in pixel as demonstrated below.
9495
}
9596
9697
```
98+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rZLTZdCrpWvYfGmi?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
9799

98100
![Changing Blazor 3D Chart Size in Pixel](images/chart-dimensions/blazor-chart-size-in-pixel.png)
99101

@@ -135,5 +137,6 @@ By setting the value in percentage, the 3D Chart gets its dimension with respec
135137
}
136138
137139
```
140+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BDVJDxMrpsargarf?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
138141

139142
![Changing Blazor 3D Chart Size in Percentage](images/chart-dimensions/blazor-chart-size-in-percentage.png)

blazor/3D-chart/chart-types/bar.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ To render a bar series, set series `Type` as `Bar`.
4848
}
4949
5050
```
51+
{% previewsample "https://blazorplayground.syncfusion.com/embed/hNhJXxsKslDavsMW?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
5152

5253
![Blazor Bar 3D Chart](../images/chart-types-images/blazor-bar-chart.png)
5354

@@ -91,6 +92,7 @@ The `ColumnSpacing` and `ColumnWidth` properties are used to customize the space
9192
}
9293
9394
```
95+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BNhTXHMgilipfRPo?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
9496

9597
![Blazor Bar 3D Chart with Space and Width](../images/chart-types-images/blazor-bar-chart-space-and-width.png)
9698

@@ -133,6 +135,7 @@ The data points can be grouped in the bar type charts by using the `GroupName` p
133135
}
134136
135137
```
138+
{% previewsample "https://blazorplayground.syncfusion.com/embed/htLfZRMUMlsmhOBI?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
136139

137140
![Grouping in Blazor Grouped Bar 3D Chart](../images/chart-types-images/blazor-column-chart-grouped-bar.png)
138141

@@ -173,6 +176,7 @@ To render a cylindrical column chart, set the `ColumnFacet` property to `Cylinde
173176
}
174177
175178
```
179+
{% previewsample "https://blazorplayground.syncfusion.com/embed/rtBfDdMAilBDiXzS?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
176180

177181
![Blazor Cylindrical Bar 3D Chart](../images/chart-types-images/blazor-cylindricaal-bar-chart.png)
178182

@@ -218,5 +222,6 @@ The following properties can be used to customize the `Bar` series.
218222
}
219223
220224
```
225+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VZBTZdMKWvrLOzmq?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
221226

222227
![Blazor Bar 3D Chart with Custom Series](../images/chart-types-images/blazor-bar-chart-custom-series.png)

blazor/3D-chart/chart-types/column.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ To render a `Column Chart`, use series `Type` as `Column`.
4949
}
5050
5151
```
52+
{% previewsample "https://blazorplayground.syncfusion.com/embed/LNLpNRCqCFqsFuka?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
5253

5354
![Blazor Column 3D Chart](../images/chart-types-images/blazor-column-chart.png)
5455

@@ -92,6 +93,7 @@ The `ColumnSpacing` and `ColumnWidth` properties are used to customize the space
9293
}
9394
9495
```
96+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BNhTZxMgMPqSWDMz?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
9597

9698
![Blazor Column 3D Chart with Space and Width](../images/chart-types-images/blazor-column-chart-space-and-width.png)
9799

@@ -134,6 +136,7 @@ The data points can be grouped in the column type charts by using the `GroupName
134136
}
135137
136138
```
139+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BthTjHsUWvUFSkhR?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
137140

138141
![Grouping in Blazor Grouped Column 3D Chart](../images/chart-types-images/blazor-column-chart-grouped-column.png)
139142

@@ -173,6 +176,7 @@ To render a cylindrical column chart, set the `ColumnFacet` property to `Cylinde
173176
}
174177
175178
```
179+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BtBJNxiAslpiKcOw?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
176180

177181
![Blazor Cylindrical Column 3D Chart](../images/chart-types-images/blazor-cylindricaal-column-chart.png)
178182

@@ -218,5 +222,6 @@ The following properties can be used to customize the `Column` series.
218222
}
219223
220224
```
225+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VthztRMgWFpfyYWl?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
221226

222227
![Blazor Column 3D Chart with Custom Series](../images/chart-types-images/blazor-column-chart-custom-series.png)

blazor/3D-chart/chart-types/stack-bar.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ To render a `100% Stacked Bar Chart` series, use series `Type` as `StackingBar10
5050
}
5151
5252
```
53+
{% previewsample "https://blazorplayground.syncfusion.com/embed/LjLTtxCUBNtIGBRY?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
5354

5455
![Blazor Stacked Bar100 3D Chart](../images/chart-types-images/blazor-stacked-bar-100-chart.png)
5556

@@ -94,6 +95,7 @@ To render a 100% cylindrical Stacked Bar chart, set the `ColumnFacet` property
9495
}
9596
9697
```
98+
{% previewsample "https://blazorplayground.syncfusion.com/embed/VtBTtdiqrXMpthaU?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
9799

98100
![Blazor Cylindrical Column100 3D Chart](../images/chart-types-images/blazor-cylindricaal-stacked-bar-100-chart.png)
99101

@@ -141,5 +143,6 @@ The following properties can be used to customize the `100% Stacked Bar` series.
141143
}
142144
143145
```
146+
{% previewsample "https://blazorplayground.syncfusion.com/embed/BZrJNnsqhNsRoHio?appbar=false&editor=false&result=true&errorlist=false&theme=bootstrap5" %}
144147

145148
![Blazor Stacked Bar100 3D Chart with Custom Series](../images/chart-types-images/blazor-stacked-bar-100-chart-custom-series.png)

0 commit comments

Comments
 (0)