-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bdb683d
commit 21dda91
Showing
1 changed file
with
18 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,18 @@ | ||
# Creating-a-3D-Pie-Chart-for-the-Biggest-Cash-Crop-in-the-U.S | ||
This article explains how to create a 3D pie chart to visualize the biggest cash crops in the US in 2022. | ||
# Creating a 3D Pie Chart for the Biggest Cash Crop in the U.S | ||
|
||
## Description | ||
The [3D pie chart](https://www.syncfusion.com/wpf-controls/charts/wpf-3d-pie-chart) is a visual representation of data that utilizes three dimensions to illustrate the proportions of various parts of a whole. In a 3D pie chart, the slices of the pie are distinguished not only by their angles and areas but also by their depth, resulting in a three-dimensional effect. | ||
|
||
## Customization | ||
We can customize the 3D chart view using properties such as [Depth](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart3D.html#Syncfusion_UI_Xaml_Charts_SfChart3D_Depth), [Rotation](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart3D.html#Syncfusion_UI_Xaml_Charts_SfChart3D_Rotation), and [Tilt](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart3D.html#Syncfusion_UI_Xaml_Charts_SfChart3D_Tilt). Additionally, we can enable dynamic rotation of the chart in three dimensions using the [EnableRotation](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.SfChart3D.html#Syncfusion_UI_Xaml_Charts_SfChart3D_EnableRotation) property. | ||
|
||
We have enhanced the appearance of our chart by customizing pie series appearances using [CircleCoefficient](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.CircularSeriesBase3D.html#Syncfusion_UI_Xaml_Charts_CircularSeriesBase3D_CircleCoefficient) and [Palette](https://help.syncfusion.com/cr/wpf/Syncfusion.UI.Xaml.Charts.ChartSeriesBase.html#Syncfusion_UI_Xaml_Charts_ChartSeriesBase_Palette) properties. | ||
|
||
This article explains how to create a 3D pie chart to visualize the six biggest cash crops in the US for 2022. | ||
<img width="931" alt="Demo" src="https://github.com/SyncfusionExamples/Creating-a-3D-Pie-Chart-for-the-Biggest-Cash-Crop-in-the-U.S/assets/103025761/e7732c6f-8470-424b-85bf-b7126823f612"> | ||
|
||
## Troubleshooting | ||
### Path too long exception | ||
If you are facing a path too long exception when building this example project, close Visual Studio and rename the repository to short and build the project. | ||
|
||
For a step-by-step procedure, refer to the [Biggest Cash Crop in US]() blog post. |