Unveiling the New Angular 3D Circular Charts Component
Live Chat Icon For mobile
Live Chat Icon
Popular Categories.NET  (175).NET Core  (29).NET MAUI  (209)Angular  (109)ASP.NET  (51)ASP.NET Core  (82)ASP.NET MVC  (89)Azure  (41)Black Friday Deal  (1)Blazor  (220)BoldSign  (15)DocIO  (24)Essential JS 2  (107)Essential Studio  (200)File Formats  (67)Flutter  (133)JavaScript  (222)Microsoft  (119)PDF  (81)Python  (1)React  (101)Streamlit  (1)Succinctly series  (131)Syncfusion  (922)TypeScript  (33)Uno Platform  (3)UWP  (4)Vue  (45)Webinar  (51)Windows Forms  (61)WinUI  (69)WPF  (159)Xamarin  (161)XlsIO  (37)Other CategoriesBarcode  (5)BI  (29)Bold BI  (8)Bold Reports  (2)Build conference  (8)Business intelligence  (55)Button  (4)C#  (151)Chart  (133)Cloud  (15)Company  (443)Dashboard  (8)Data Science  (3)Data Validation  (8)DataGrid  (64)Development  (634)Doc  (8)DockingManager  (1)eBook  (99)Enterprise  (22)Entity Framework  (5)Essential Tools  (14)Excel  (42)Extensions  (22)File Manager  (7)Gantt  (18)Gauge  (12)Git  (5)Grid  (31)HTML  (13)Installer  (2)Knockout  (2)Language  (1)LINQPad  (1)Linux  (2)M-Commerce  (1)Metro Studio  (11)Mobile  (509)Mobile MVC  (9)OLAP server  (1)Open source  (1)Orubase  (12)Partners  (21)PDF viewer  (43)Performance  (12)PHP  (2)PivotGrid  (4)Predictive Analytics  (6)Report Server  (3)Reporting  (10)Reporting / Back Office  (11)Rich Text Editor  (12)Road Map  (12)Scheduler  (52)Security  (3)SfDataGrid  (9)Silverlight  (21)Sneak Peek  (31)Solution Services  (4)Spreadsheet  (11)SQL  (11)Stock Chart  (1)Surface  (4)Tablets  (5)Theme  (12)Tips and Tricks  (112)UI  (388)Uncategorized  (68)Unix  (2)User interface  (68)Visual State Manager  (2)Visual Studio  (31)Visual Studio Code  (19)Web  (598)What's new  (333)Windows 8  (19)Windows App  (2)Windows Phone  (15)Windows Phone 7  (9)WinRT  (26)
Unveiling the New Angular 3D Circular Charts Component

Unveiling the New Angular 3D Circular Charts Component

TLDR: Exploring the new Syncfusion Angular 3D Circular Charts component, visualizing data with its marvelous features and code examples.

We are thrilled to introduce the new Angular 3D Circular Charts component in the Essential Studio 2024 Volume 1 release. It is designed to revolutionize data presentation by injecting depth and clarity into your visualizations, taking information to a whole new dimension for enhanced engagement and understanding.

Exploring the world of 3D Circular Charts

The Angular 3D Circular Charts component provides a graphical representation of data in three dimensions, with each slice’s size indicating its proportion relative to the entire dataset.

Unlike the traditional 2D charts, the 3D Circular Charts component adds depth to the visualization, allowing a better understanding of data patterns.

Angular 3D Circular Charts component
Angular 3D Circular Charts component

Key features that define excellence

Let’s see the vivid features of the Angular 3D Circular Charts component:

Chart types

The Angular 3D Circular Charts component boasts two versatile chart types,

  • Pie: A pie chart is a circular diagram representing the proportions of a whole by dividing it into slices.
  • Donut: A donut is a circular chart akin to a pie chart but featuring a central void, representing data proportions and distributions.
Angular 3D Pie and Donut Circular Charts
Angular 3D Pie and Donut Circular Charts

Data binding

You can effortlessly bind the 3D Circular Charts component with an array of JSON objects or a DataManager, supporting local and remote data binding methods. Not only can chart series be bound, but data labels and tooltips can also be seamlessly integrated with your data.

Binding data with the Angular 3D Circular Charts
Binding data with the Angular 3D Circular Charts

Data labels

Data labels represent textual or numeric information attached to individual data points. We can also enhance these labels with HTML elements such as images, DIV, and spans, creating informative and visually appealing data representations.

Data labels in Angular 3D Circular Charts
Data labels in Angular 3D Circular Charts

Legends

Legends provide essential information about data categories in a chart. Labels and symbols aid viewers in identifying and differentiating between various data points within the chart.

Legends in Angular 3D Circular Charts
Legends in Angular 3D Circular Charts

User interaction features

Elevate user experience with interactive features such as tooltips, highlight, and selection.

  • Tooltip: A small, informative pop-up box offering additional context, details, or information when users hover over or click on chart data.
  • Highlight and selection: Easily highlight and select data points for improved comprehension. Adding patterns and colors to selected data enhances the chart’s interactivity.
User interactive features in Angular 3D Circular Charts
User interactive features in Angular 3D Circular Charts

Rotation and tilt

Rotation: We can dynamically rotate the 3D Circular Charts component from 0 to 360 degrees around a fixed point in a three-dimensional space, clockwise or anti-clockwise.

Tilt: We can also alter the inclination angle of the chart to provide a unique and engaging perspective.

Rotation and tilt features in Angular 3D Circular Charts
Rotation and tilt features in Angular 3D Circular Charts

Getting started with the Angular 3D Circular Charts component

We’ve explored the marvelous features of the Angular 3D Circular Charts component. Let’s see how to integrate it into your Angular app.

  1. First, create an Angular app using the following command.
    ng new-my app
    cd my-app
  1. Now, install the Syncfusion Angular Charts NPM package using the following command.
    npm install @syncfusion/ej2-angular-charts –save
  1. Import the 3D Circular Charts module into the Angular app from the package @syncfusion/ej2-angular-charts in the app.module.ts file.
    import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    // Import the Chart Module for the Chart component.
    import { CircularChart3DModule } from '@syncfusion/ej2-angular-charts';
    import { AppComponent }  from './app.component';
    
    @NgModule({
      //Declaration of ChartModule into NgModule.
      imports:      [ BrowserModule, CircularChart3DModule ],
      declarations: [ AppComponent ],
      bootstrap:    [ AppComponent ]
    })
    export class AppModule { }
    
  1. Modify the template in the app.component.ts file to render the 3D Circular Charts component.
    import { Component, ViewEncapsulation } from '@angular/core';
    
    @Component({
      selector: 'app-container',
      // Specifies the template string for the 3D Circular Charts component.
      template: `<ejs-circularchart3d id='chart-container'></ejs-circularchart3d>`,
      encapsulation: ViewEncapsulation.None
    })
    export class AppComponent  { }
  1. Use the app-container in the html file instead of the default one.
    <app-container></app-container>
  1. Now, run the app using the following command.
    npm start
  1. Finally, let’s render a 3D Pie Circular Chart using the following code.

    App.component.ts

    import { Component, OnInit } from '@angular/core';
    
    @Component({
        selector: 'app-container',
        template: `<ejs-circularchart3d style='display:block;' align='center' 
        rotation=7 tilt=10 depth=100 [tooltip]=’tooltip’ [enableRotation]='enableRotation'>
        <e-circularchart3d-series-collection>
            <e-circularchart3d-series [dataSource]='dataSource' xName='x' yName='y'>
            </e-circularchart3d-series>
        </e-circularchart3d-series-collection>
    </ejs-circularchart3d>`
    })
    export class AppComponent implements OnInit {
        public dataSource?: Object[];
        public enableRotation?: boolean;
        public tooltip?: Object[];
        ngOnInit(): void {
            this.dataSource = [
                { x: 'Tesla', y: 137429 }, { x: 'Aion', y: 80308 },
                { x: 'Wuling', y: 76418 }, { x: 'Changan', y: 52849 },
                { x: 'Geely', y: 47234 }, { x: 'Nio', y: 31041 },
                { x: 'Neta', y: 22449 }, { x: 'BMW', y: 18733 }];
            this.enableRotation = true;
            this.tooltip = {enable: true};
        }
    }

After executing the above code examples, we’ll get the output that resembles the following image.

Integrating the 3D Circular Charts component in the Angular app
Integrating the 3D Circular Charts component in the Angular app

References

For more details, refer to the Angular 3D Circular Charts documentation and demos.

Conclusion

Thanks for reading! We’ve explored the new Angular 3D Circular Charts component, a remarkable addition to our 2024 Volume 1 release. This powerful tool is designed to improve your data visualization experience, and we’re eager to hear your thoughts on it. Don’t hesitate to share your opinion in the comments section.

For a detailed overview of this release’s exciting updates, we invite you to visit our Release Notes and What’s New pages. For our existing customers, the new version of Essential Studio is available on the License and Downloads page. If you’re new to Syncfusion, we offer a 30-day free trial so you can experience the vast array of features we provide. It’s a great opportunity to explore how our tools can enhance your development process.

If you have any questions, you can reach us through our support forumsupport portal, or feedback portal. Your satisfaction is our top priority, and we’re always happy to assist you in any way we can.

Related blogs

Tags:

Share this post:

Popular Now

Be the first to get updates

Subscribe RSS feed

Be the first to get updates

Subscribe RSS feed