Implementing Syncfusion WPF 3D Charts
Comprehensive guide for implementing the Syncfusion® WPF 3D Charts (SfChart3D) control to create interactive 3D data visualizations in Windows Presentation Foundation applications. This skill covers setup, configuration, series types, axes, adornments, appearance customization, and interactive features for 3D charts.
When to Use This Skill
Use this skill when you need to:
- Create 3D visualizations with Column, Bar, Line, Area, Scatter, or Circular series
- Plot data in 3D space using X, Y, and Z coordinates with Depth Axis
- Implement interactive 3D charts with rotation, tilt, and perspective controls
- Configure 3D series with 11+ chart types (Column, Bar, Line, Scatter, Area, Stacking variants, Pie, Doughnut)
- Set up multiple axes (Numerical, Category, DateTime, TimeSpan, Logarithmic)
- Build Manhattan charts with multiple series on depth axis
- Add data adornments with 3D labels, markers, and positioning
- Customize appearance with palettes, colors, and themes
- Enable user interaction with dynamic rotation, selection, and exploding segments
- Optimize performance for large 3D datasets
Component Overview
The SfChart3D control provides comprehensive 3D charting capabilities for WPF applications, allowing you to visualize two-dimensional data in a three-dimensional view with full rotation support.
Key Capabilities:
- 11+ Series Types: Column, Bar, Line, Scatter, Area, Stacking variants, Pie, Doughnut
- 3D Visualization: Rotation, tilt, perspective angle for optimal data viewing
- Depth Axis (Z-Axis): True 3D plotting with X, Y, Z coordinates
- Manhattan Charts: Multiple series visualization on depth axis
- Multiple Axis Types: Numerical, Category, DateTime, TimeSpan, Logarithmic
- Interactive Features: Dynamic rotation, selection, exploding segments
- Data Adornments: 3D labels, markers, positioning
- Rich Customization: Palettes, colors, themes, styling
- Data Binding: Full MVVM support with ObservableCollection
- Animations: Series loading and data update animations
Documentation and Navigation Guide
Getting Started
📄 Read: references/getting-started.md
- Installation and assembly references (Syncfusion.SfChart.WPF)
- Adding SfChart3D control to WPF projects
- XAML namespace configuration
- Setting up PrimaryAxis and SecondaryAxis
- Basic data binding with ItemsSource, XBindingPath, YBindingPath
- Creating your first 3D chart with complete example
- Adding titles, legends, tooltips, and data labels
- ViewModel setup with ObservableCollection
Series Types
📄 Read: references/series-types.md
- Overview of 11+ series types and common properties
- Column charts (ColumnSeries3D) with Spacing and SegmentSpacing
- Bar charts (BarSeries3D)
- Line charts (LineSeries3D)
- Scatter charts (ScatterSeries3D) with size configuration
- Area charts (AreaSeries3D)
- Stacking charts (StackingColumnSeries3D, StackingColumn100Series3D, StackingBarSeries3D, StackingBar100Series3D)
- Circular charts (PieSeries3D, DoughnutSeries3D)
- Circular chart features (coefficients, semi-circular, dynamic explode)
- Series selection and Interior property
- When to use each series type
Axes Configuration
📄 Read: references/axes-configuration.md
- Axis overview (PrimaryAxis, SecondaryAxis, DepthAxis)
- NumericalAxis3D for numeric data
- CategoryAxis3D for categorical data
- DateTimeAxis3D for time-series data
- TimeSpanAxis3D for time duration data
- LogarithmicAxis3D for exponential data
- Depth Axis (Z-Axis) setup with ZBindingPath
- True 3D plotting with X, Y, Z coordinates
- Manhattan Charts with multiple series on depth axis
- Axis customization (headers, intervals, ranges)
- Troubleshooting axis configuration issues
Data Adornments
📄 Read: references/adornments.md
- ChartAdornmentInfo3D configuration
- Enabling data labels with ShowLabel property
- Data markers (types, shapes, customization)
- Label positioning options
- Label formatting and templates
- Adornment styling and appearance
- Performance considerations for large datasets
Appearance Customization
📄 Read: references/appearance-customization.md
- Predefined color palettes (Metro, AutumnBrights, FloraHues, Pineapple, TomotoSpectrum, RedChrome, PurpleChrome, BlueChrome, GreenChrome, Elite, LightCandy, SandyBeach)
- Applying palettes to series vs segments
- Custom palettes with ColorModel and CustomBrushes
- SegmentColorPath for data-driven coloring
- Series Interior property
- Theme integration
- Styling best practices
Interactive Features
📄 Read: references/interactive-features.md
- 3D rotation and navigation (EnableRotation, Rotation, Tilt, PerspectiveAngle)
- Dynamic rotation with mouse and touch devices
- Selection support (segment and series selection)
- Circular series explode (ExplodeOnMouseClick, ExplodeIndex, ExplodeAll)
- Tooltip configuration (ShowTooltip property)
- Animation support for series loading
- User interaction patterns and best practices
Quick Start Example
Here's a minimal example to create a 3D Column chart:
XAML:
<Window xmlns:chart="clr-namespace:Syncfusion.UI.Xaml.Charts;assembly=Syncfusion.SfChart.WPF">
<Window.DataContext>
<local:ViewModel/>
</Window.DataContext>
<chart:SfChart3D Header="Sales Data 3D" Width="500" Height="500">
<!-- Primary Axis (X-Axis) -->
<chart:SfChart3D.PrimaryAxis>
<chart:CategoryAxis3D Header="Month"/>
</chart:SfChart3D.PrimaryAxis>
<!-- Secondary Axis (Y-Axis) -->
<chart:SfChart3D.SecondaryAxis>
<chart:NumericalAxis3D Header="Sales"/>
</chart:SfChart3D.SecondaryAxis>
<!-- Legend -->
<chart:SfChart3D.Legend>
<chart:ChartLegend/>
</chart:SfChart3D.Legend>
<!-- 3D Column Series -->
<chart:ColumnSeries3D
Label="Revenue"
ItemsSource="{Binding SalesData}"
XBindingPath="Month"
YBindingPath="Sales"
ShowTooltip="True">
<!-- Data Labels -->
<chart:ColumnSeries3D.AdornmentsInfo>
<chart:ChartAdornmentInfo3D ShowLabel="True"/>
</chart:ColumnSeries3D.AdornmentsInfo>
</chart:ColumnSeries3D>
</chart:SfChart3D>
</Window>
C# ViewModel:
using System.Collections.ObjectModel;
public class SalesData
{
public string Month { get; set; }
public double Sales { get; set; }
}
public class ViewModel
{
public ObservableCollection<SalesData> SalesData { get; set; }
public ViewModel()
{
SalesData = new ObservableCollection<SalesData>
{
new SalesData { Month = "Jan", Sales = 35000 },
new SalesData { Month = "Feb", Sales = 48000 },
new SalesData { Month = "Mar", Sales = 42000 },
new SalesData { Month = "Apr", Sales = 56000 },
new SalesData { Month = "May", Sales = 63000 },
new SalesData { Month = "Jun", Sales = 71000 }
};
}
}
Common Patterns
Pattern 1: 3D Chart with Rotation
Enable interactive rotation for better data exploration:
<chart:SfChart3D EnableRotation="True" Rotation="45" Tilt="-30" PerspectiveAngle="90">
<!-- Axes and series configuration -->
</chart:SfChart3D>
Pattern 2: Manhattan Chart (Multiple Series on Depth Axis)
Visualize multiple series across depth axis:
<chart:SfChart3D Rotation="43">
<chart:SfChart3D.PrimaryAxis>
<chart:CategoryAxis3D/>
</chart:SfChart3D.PrimaryAxis>
<chart:SfChart3D.SecondaryAxis>
<chart:NumericalAxis3D/>
</chart:SfChart3D.SecondaryAxis>
<!-- Depth Axis (Z-Axis) -->
<chart:SfChart3D.DepthAxis>
<chart:CategoryAxis3D/>
</chart:SfChart3D.DepthAxis>
<chart:LineSeries3D Label="Product A" ItemsSource="{Binding Data1}"
XBindingPath="X" YBindingPath="Y"/>
<chart:LineSeries3D Label="Product B" ItemsSource="{Binding Data2}"
XBindingPath="X" YBindingPath="Y"/>
</chart:SfChart3D>
Pattern 3: True 3D Plotting with X, Y, Z Coordinates
Plot data using all three dimensions:
<chart:SfChart3D>
<chart:SfChart3D.PrimaryAxis>
<chart:NumericalAxis3D/>
</chart:SfChart3D.PrimaryAxis>
<chart:SfChart3D.SecondaryAxis>
<chart:NumericalAxis3D/>
</chart:SfChart3D.SecondaryAxis>
<!-- Depth Axis for Z coordinates -->
<chart:SfChart3D.DepthAxis>
<chart:NumericalAxis3D Interval="1"/>
</chart:SfChart3D.DepthAxis>
<chart:ColumnSeries3D
ItemsSource="{Binding Data3D}"
XBindingPath="XValue"
YBindingPath="YValue"
ZBindingPath="ZValue"/>
</chart:SfChart3D>
Pattern 4: 3D Pie Chart with Explode Effect
Create interactive circular charts:
<chart:PieSeries3D
ItemsSource="{Binding CategoryData}"
XBindingPath="Category"
YBindingPath="Value"
ExplodeOnMouseClick="True"
CircleCoefficient="0.8">
</chart:PieSeries3D>
Pattern 5: Custom Color Palette
Apply custom colors to your 3D chart:
<chart:SfChart3D Palette="Custom">
<chart:SfChart3D.ColorModel>
<chart:ChartColorModel>
<chart:ChartColorModel.CustomBrushes>
<SolidColorBrush Color="#6366F1"/>
<SolidColorBrush Color="#8B5CF6"/>
<SolidColorBrush Color="#EC4899"/>
<SolidColorBrush Color="#F59E0B"/>
</chart:ChartColorModel.CustomBrushes>
</chart:ChartColorModel>
</chart:SfChart3D.ColorModel>
<!-- Series configuration -->
</chart:SfChart3D>
Key Properties Reference
SfChart3D Control
- EnableRotation - Enable mouse/touch rotation
- Rotation - Initial rotation angle (0-360)
- Tilt - Vertical tilt angle
- PerspectiveAngle - 3D perspective (0-180)
- Depth - Chart depth for 3D effect
- PrimaryAxis - X-axis configuration
- SecondaryAxis - Y-axis configuration
- DepthAxis - Z-axis configuration (optional)
- Header - Chart title
- Legend - Legend configuration
- Palette - Color palette selection
Series Common Properties
- ItemsSource - Data collection binding
- XBindingPath - Property for X values
- YBindingPath - Property for Y values
- ZBindingPath - Property for Z values (depth axis)
- Label - Series name for legend
- ShowTooltip - Enable tooltips
- Interior - Series fill color
- AdornmentsInfo - Data label configuration
Spacing Properties (Column/Bar)
- Spacing - Space between segments (0-1)
- SegmentSpacing - Space between series (0-1)
Circular Series Properties
- CircleCoefficient - Inner circle size (Pie)
- DoughnutCoefficient - Inner circle size (Doughnut)
- StartAngle - Starting angle for semi-circular
- EndAngle - Ending angle for semi-circular
- ExplodeOnMouseClick - Enable click-to-explode
- ExplodeIndex - Index of segment to explode
- ExplodeAll - Explode all segments
Common Use Cases
Use Case 1: Financial Data Visualization
Visualize quarterly revenue across multiple products in 3D:
- Use ColumnSeries3D with DepthAxis for product comparison
- Apply CategoryAxis3D for quarters and products
- Enable Rotation for different viewing angles
- Add data labels to show exact values
Use Case 2: Scientific Data Analysis
Plot scientific measurements with X, Y, Z coordinates:
- Use ScatterSeries3D with ZBindingPath for 3D points
- Apply NumericalAxis3D for all three axes
- Enable dynamic rotation for data exploration
- Use custom markers for data point visualization
Use Case 3: Market Share Dashboard
Display market share distribution in 3D:
- Use PieSeries3D or DoughnutSeries3D for proportional data
- Apply custom palettes for brand colors
- Enable ExplodeOnMouseClick for interactivity
- Add tooltips for detailed information
Use Case 4: Time-Series Comparison
Compare multiple datasets over time in 3D:
- Use LineSeries3D with Manhattan chart pattern
- Apply DateTimeAxis3D for time-based X-axis
- Use Label property for series identification
- Enable Legend for series navigation
Use Case 5: Performance Metrics Dashboard
Visualize stacked performance metrics:
- Use StackingColumnSeries3D for cumulative data
- Apply custom colors via ColorModel
- Add data labels for metric values
- Enable tooltips for drill-down details
Troubleshooting Tips
Issue: Chart not displaying
- Verify assembly reference:
Syncfusion.SfChart.WPF
- Check XAML namespace declaration
- Ensure ItemsSource has data
- Verify XBindingPath and YBindingPath match property names
Issue: 3D effect not visible
- Set Depth property (default: 100)
- Configure Rotation and Tilt angles
- Adjust PerspectiveAngle for depth perception
Issue: Rotation not working
- Set EnableRotation="True"
- Ensure chart has sufficient space (Width/Height)
- Check for mouse event conflicts
Issue: Depth axis not showing
- Add DepthAxis configuration to SfChart3D
- Set ZBindingPath on series
- Verify series type supports depth axis (Column, Bar, Line, Scatter, StackingColumn, StackingBar)
For detailed troubleshooting and advanced scenarios, refer to the specific reference documentation above.
1---2name: syncfusion-wpf-3d-chart3description: Comprehensive guide for implementing Syncfusion WPF 3D Charts (SfChart3D) control for 3D data visualization in Windows Presentation Foundation applications. Use this when working with 3D charts, 3D visualization, or depth axis configurations. This skill covers 3D series types (column, pie, bar), Manhattan charts, 3D rotation, X/Y/Z coordinate plotting, and depth axis configuration for WPF applications.4---56# Implementing Syncfusion WPF 3D Charts78Comprehensive guide for implementing the Syncfusion® WPF 3D Charts (SfChart3D) control to create interactive 3D data visualizations in Windows Presentation Foundation applications. This skill covers setup, configuration, series types, axes, adornments, appearance customization, and interactive features for 3D charts.910## When to Use This Skill1112Use this skill when you need to:13- **Create 3D visualizations** with Column, Bar, Line, Area, Scatter, or Circular series14- **Plot data in 3D space** using X, Y, and Z coordinates with Depth Axis15- **Implement interactive 3D charts** with rotation, tilt, and perspective controls16- **Configure 3D series** with 11+ chart types (Column, Bar, Line, Scatter, Area, Stacking variants, Pie, Doughnut)17- **Set up multiple axes** (Numerical, Category, DateTime, TimeSpan, Logarithmic)18- **Build Manhattan charts** with multiple series on depth axis19- **Add data adornments** with 3D labels, markers, and positioning20- **Customize appearance** with palettes, colors, and themes21- **Enable user interaction** with dynamic rotation, selection, and exploding segments22- **Optimize performance** for large 3D datasets2324## Component Overview2526The **SfChart3D** control provides comprehensive 3D charting capabilities for WPF applications, allowing you to visualize two-dimensional data in a three-dimensional view with full rotation support.2728**Key Capabilities:**29- **11+ Series Types:** Column, Bar, Line, Scatter, Area, Stacking variants, Pie, Doughnut30- **3D Visualization:** Rotation, tilt, perspective angle for optimal data viewing31- **Depth Axis (Z-Axis):** True 3D plotting with X, Y, Z coordinates32- **Manhattan Charts:** Multiple series visualization on depth axis33- **Multiple Axis Types:** Numerical, Category, DateTime, TimeSpan, Logarithmic34- **Interactive Features:** Dynamic rotation, selection, exploding segments35- **Data Adornments:** 3D labels, markers, positioning36- **Rich Customization:** Palettes, colors, themes, styling37- **Data Binding:** Full MVVM support with ObservableCollection38- **Animations:** Series loading and data update animations3940## Documentation and Navigation Guide4142### Getting Started43📄 **Read:** [references/getting-started.md](references/getting-started.md)44- Installation and assembly references (Syncfusion.SfChart.WPF)45- Adding SfChart3D control to WPF projects46- XAML namespace configuration47- Setting up PrimaryAxis and SecondaryAxis48- Basic data binding with ItemsSource, XBindingPath, YBindingPath49- Creating your first 3D chart with complete example50- Adding titles, legends, tooltips, and data labels51- ViewModel setup with ObservableCollection5253### Series Types54📄 **Read:** [references/series-types.md](references/series-types.md)55- Overview of 11+ series types and common properties56- Column charts (ColumnSeries3D) with Spacing and SegmentSpacing57- Bar charts (BarSeries3D)58- Line charts (LineSeries3D)59- Scatter charts (ScatterSeries3D) with size configuration60- Area charts (AreaSeries3D)61- Stacking charts (StackingColumnSeries3D, StackingColumn100Series3D, StackingBarSeries3D, StackingBar100Series3D)62- Circular charts (PieSeries3D, DoughnutSeries3D)63- Circular chart features (coefficients, semi-circular, dynamic explode)64- Series selection and Interior property65- When to use each series type6667### Axes Configuration68📄 **Read:** [references/axes-configuration.md](references/axes-configuration.md)69- Axis overview (PrimaryAxis, SecondaryAxis, DepthAxis)70- NumericalAxis3D for numeric data71- CategoryAxis3D for categorical data72- DateTimeAxis3D for time-series data73- TimeSpanAxis3D for time duration data74- LogarithmicAxis3D for exponential data75- Depth Axis (Z-Axis) setup with ZBindingPath76- True 3D plotting with X, Y, Z coordinates77- Manhattan Charts with multiple series on depth axis78- Axis customization (headers, intervals, ranges)79- Troubleshooting axis configuration issues8081### Data Adornments82📄 **Read:** [references/adornments.md](references/adornments.md)83- ChartAdornmentInfo3D configuration84- Enabling data labels with ShowLabel property85- Data markers (types, shapes, customization)86- Label positioning options87- Label formatting and templates88- Adornment styling and appearance89- Performance considerations for large datasets9091### Appearance Customization92📄 **Read:** [references/appearance-customization.md](references/appearance-customization.md)93- Predefined color palettes (Metro, AutumnBrights, FloraHues, Pineapple, TomotoSpectrum, RedChrome, PurpleChrome, BlueChrome, GreenChrome, Elite, LightCandy, SandyBeach)94- Applying palettes to series vs segments95- Custom palettes with ColorModel and CustomBrushes96- SegmentColorPath for data-driven coloring97- Series Interior property98- Theme integration99- Styling best practices100101### Interactive Features102📄 **Read:** [references/interactive-features.md](references/interactive-features.md)103- 3D rotation and navigation (EnableRotation, Rotation, Tilt, PerspectiveAngle)104- Dynamic rotation with mouse and touch devices105- Selection support (segment and series selection)106- Circular series explode (ExplodeOnMouseClick, ExplodeIndex, ExplodeAll)107- Tooltip configuration (ShowTooltip property)108- Animation support for series loading109- User interaction patterns and best practices110111## Quick Start Example112113Here's a minimal example to create a 3D Column chart:114115**XAML:**116```xml117<Window xmlns:chart="clr-namespace:Syncfusion.UI.Xaml.Charts;assembly=Syncfusion.SfChart.WPF">118 119 <Window.DataContext>120 <local:ViewModel/>121 </Window.DataContext>122 123 <chart:SfChart3D Header="Sales Data 3D" Width="500" Height="500">124 125 <!-- Primary Axis (X-Axis) -->126 <chart:SfChart3D.PrimaryAxis>127 <chart:CategoryAxis3D Header="Month"/>128 </chart:SfChart3D.PrimaryAxis>129 130 <!-- Secondary Axis (Y-Axis) -->131 <chart:SfChart3D.SecondaryAxis>132 <chart:NumericalAxis3D Header="Sales"/>133 </chart:SfChart3D.SecondaryAxis>134 135 <!-- Legend -->136 <chart:SfChart3D.Legend>137 <chart:ChartLegend/>138 </chart:SfChart3D.Legend>139 140 <!-- 3D Column Series -->141 <chart:ColumnSeries3D 142 Label="Revenue" 143 ItemsSource="{Binding SalesData}" 144 XBindingPath="Month" 145 YBindingPath="Sales"146 ShowTooltip="True">147 148 <!-- Data Labels -->149 <chart:ColumnSeries3D.AdornmentsInfo>150 <chart:ChartAdornmentInfo3D ShowLabel="True"/>151 </chart:ColumnSeries3D.AdornmentsInfo>152 </chart:ColumnSeries3D>153 154 </chart:SfChart3D>155 156</Window>157```158159**C# ViewModel:**160```csharp161using System.Collections.ObjectModel;162163public class SalesData164{165 public string Month { get; set; }166 public double Sales { get; set; }167}168169public class ViewModel170{171 public ObservableCollection<SalesData> SalesData { get; set; }172 173 public ViewModel()174 {175 SalesData = new ObservableCollection<SalesData>176 {177 new SalesData { Month = "Jan", Sales = 35000 },178 new SalesData { Month = "Feb", Sales = 48000 },179 new SalesData { Month = "Mar", Sales = 42000 },180 new SalesData { Month = "Apr", Sales = 56000 },181 new SalesData { Month = "May", Sales = 63000 },182 new SalesData { Month = "Jun", Sales = 71000 }183 };184 }185}186```187188## Common Patterns189190### Pattern 1: 3D Chart with Rotation191Enable interactive rotation for better data exploration:192193```xml194<chart:SfChart3D EnableRotation="True" Rotation="45" Tilt="-30" PerspectiveAngle="90">195 <!-- Axes and series configuration -->196</chart:SfChart3D>197```198199### Pattern 2: Manhattan Chart (Multiple Series on Depth Axis)200Visualize multiple series across depth axis:201202```xml203<chart:SfChart3D Rotation="43">204 <chart:SfChart3D.PrimaryAxis>205 <chart:CategoryAxis3D/>206 </chart:SfChart3D.PrimaryAxis>207 <chart:SfChart3D.SecondaryAxis>208 <chart:NumericalAxis3D/>209 </chart:SfChart3D.SecondaryAxis>210 211 <!-- Depth Axis (Z-Axis) -->212 <chart:SfChart3D.DepthAxis>213 <chart:CategoryAxis3D/>214 </chart:SfChart3D.DepthAxis>215 216 <chart:LineSeries3D Label="Product A" ItemsSource="{Binding Data1}" 217 XBindingPath="X" YBindingPath="Y"/>218 <chart:LineSeries3D Label="Product B" ItemsSource="{Binding Data2}" 219 XBindingPath="X" YBindingPath="Y"/>220</chart:SfChart3D>221```222223### Pattern 3: True 3D Plotting with X, Y, Z Coordinates224Plot data using all three dimensions:225226```xml227<chart:SfChart3D>228 <chart:SfChart3D.PrimaryAxis>229 <chart:NumericalAxis3D/>230 </chart:SfChart3D.PrimaryAxis>231 <chart:SfChart3D.SecondaryAxis>232 <chart:NumericalAxis3D/>233 </chart:SfChart3D.SecondaryAxis>234 235 <!-- Depth Axis for Z coordinates -->236 <chart:SfChart3D.DepthAxis>237 <chart:NumericalAxis3D Interval="1"/>238 </chart:SfChart3D.DepthAxis>239 240 <chart:ColumnSeries3D 241 ItemsSource="{Binding Data3D}" 242 XBindingPath="XValue" 243 YBindingPath="YValue" 244 ZBindingPath="ZValue"/>245</chart:SfChart3D>246```247248### Pattern 4: 3D Pie Chart with Explode Effect249Create interactive circular charts:250251```xml252<chart:PieSeries3D 253 ItemsSource="{Binding CategoryData}" 254 XBindingPath="Category" 255 YBindingPath="Value"256 ExplodeOnMouseClick="True"257 CircleCoefficient="0.8">258</chart:PieSeries3D>259```260261### Pattern 5: Custom Color Palette262Apply custom colors to your 3D chart:263264```xml265<chart:SfChart3D Palette="Custom">266 <chart:SfChart3D.ColorModel>267 <chart:ChartColorModel>268 <chart:ChartColorModel.CustomBrushes>269 <SolidColorBrush Color="#6366F1"/>270 <SolidColorBrush Color="#8B5CF6"/>271 <SolidColorBrush Color="#EC4899"/>272 <SolidColorBrush Color="#F59E0B"/>273 </chart:ChartColorModel.CustomBrushes>274 </chart:ChartColorModel>275 </chart:SfChart3D.ColorModel>276 277 <!-- Series configuration -->278</chart:SfChart3D>279```280281## Key Properties Reference282283### SfChart3D Control284- **EnableRotation** - Enable mouse/touch rotation285- **Rotation** - Initial rotation angle (0-360)286- **Tilt** - Vertical tilt angle287- **PerspectiveAngle** - 3D perspective (0-180)288- **Depth** - Chart depth for 3D effect289- **PrimaryAxis** - X-axis configuration290- **SecondaryAxis** - Y-axis configuration291- **DepthAxis** - Z-axis configuration (optional)292- **Header** - Chart title293- **Legend** - Legend configuration294- **Palette** - Color palette selection295296### Series Common Properties297- **ItemsSource** - Data collection binding298- **XBindingPath** - Property for X values299- **YBindingPath** - Property for Y values300- **ZBindingPath** - Property for Z values (depth axis)301- **Label** - Series name for legend302- **ShowTooltip** - Enable tooltips303- **Interior** - Series fill color304- **AdornmentsInfo** - Data label configuration305306### Spacing Properties (Column/Bar)307- **Spacing** - Space between segments (0-1)308- **SegmentSpacing** - Space between series (0-1)309310### Circular Series Properties311- **CircleCoefficient** - Inner circle size (Pie)312- **DoughnutCoefficient** - Inner circle size (Doughnut)313- **StartAngle** - Starting angle for semi-circular314- **EndAngle** - Ending angle for semi-circular315- **ExplodeOnMouseClick** - Enable click-to-explode316- **ExplodeIndex** - Index of segment to explode317- **ExplodeAll** - Explode all segments318319## Common Use Cases320321### Use Case 1: Financial Data Visualization322Visualize quarterly revenue across multiple products in 3D:323- Use **ColumnSeries3D** with **DepthAxis** for product comparison324- Apply **CategoryAxis3D** for quarters and products325- Enable **Rotation** for different viewing angles326- Add **data labels** to show exact values327328### Use Case 2: Scientific Data Analysis329Plot scientific measurements with X, Y, Z coordinates:330- Use **ScatterSeries3D** with **ZBindingPath** for 3D points331- Apply **NumericalAxis3D** for all three axes332- Enable **dynamic rotation** for data exploration333- Use **custom markers** for data point visualization334335### Use Case 3: Market Share Dashboard336Display market share distribution in 3D:337- Use **PieSeries3D** or **DoughnutSeries3D** for proportional data338- Apply **custom palettes** for brand colors339- Enable **ExplodeOnMouseClick** for interactivity340- Add **tooltips** for detailed information341342### Use Case 4: Time-Series Comparison343Compare multiple datasets over time in 3D:344- Use **LineSeries3D** with **Manhattan chart** pattern345- Apply **DateTimeAxis3D** for time-based X-axis346- Use **Label** property for series identification347- Enable **Legend** for series navigation348349### Use Case 5: Performance Metrics Dashboard350Visualize stacked performance metrics:351- Use **StackingColumnSeries3D** for cumulative data352- Apply **custom colors** via **ColorModel**353- Add **data labels** for metric values354- Enable **tooltips** for drill-down details355356## Troubleshooting Tips357358**Issue:** Chart not displaying359- Verify assembly reference: `Syncfusion.SfChart.WPF`360- Check XAML namespace declaration361- Ensure ItemsSource has data362- Verify XBindingPath and YBindingPath match property names363364**Issue:** 3D effect not visible365- Set **Depth** property (default: 100)366- Configure **Rotation** and **Tilt** angles367- Adjust **PerspectiveAngle** for depth perception368369**Issue:** Rotation not working370- Set **EnableRotation="True"**371- Ensure chart has sufficient space (Width/Height)372- Check for mouse event conflicts373374**Issue:** Depth axis not showing375- Add **DepthAxis** configuration to SfChart3D376- Set **ZBindingPath** on series377- Verify series type supports depth axis (Column, Bar, Line, Scatter, StackingColumn, StackingBar)378379For detailed troubleshooting and advanced scenarios, refer to the specific reference documentation above.