syncfusion-angular-circular-3d-chart
Implement interactive 3D circular charts in Angular applications using Syncfusion. Covers pie and donut chart creation, data binding, data labels with positioning and templates, empty points handling, tooltips with custom formatting, legend configuration, titles and subtitles, and print/export functionality (PNG, SVG, PDF). Use this skill when creating 3D circular visualizations for data representation, comparison, and interactive user engagement.
What this skill does
# Implementing Syncfusion Angular Circular 3D Chart
## When to Use This Skill
Use this skill when you need to:
- **Create a 3D circular chart** from scratch in an Angular application
- **Display pie and donut charts** for proportional data visualization
- **Add and customize data labels** with positioning and templates
- **Handle empty data points** gracefully in your chart
- **Configure tooltips** with custom formatting and templates
- **Set up and customize legends** for chart interactivity
- **Add titles and subtitles** to your visualizations
- **Export or print charts** as images or PDFs
- **Ensure accessibility** for keyboard navigation and screen readers
---
## Component Overview
The **Syncfusion Angular Circular 3D Chart** component provides a powerful solution for creating three-dimensional pie and donut chart visualizations. It supports multiple data representations with interactive features including smart label positioning, custom data label templates, tooltip formatting, and comprehensive export capabilities. The component is designed for Angular 21+ with standalone architecture and includes accessibility features for inclusive user experiences.
### Key Capabilities
- **Chart Types:** Pie and Donut charts with 3D perspective
- **Data Labels:** Automatic positioning, custom templates, connector lines, formatting options
- **Empty Points:** Intelligent handling of missing or zero-value data points
- **Tooltips:** Custom formatting, headers, and HTML templates
- **Legends:** Configurable positioning, interactions, and styling
- **Titles:** Main title and subtitle support with customization
- **Export/Print:** PNG, SVG, PDF formats with high-quality output
- **Accessibility:** WCAG compliance, keyboard navigation, ARIA attributes
---
## Documentation and Navigation Guide
### API Reference
๐ **Read:** [references/api-reference.md](references/api-reference.md)
### Getting Started
๐ **Read:** [references/getting-started.md](references/getting-started.md)
- Installation and package setup
- Create your first 3D circular chart
- Basic component configuration
- CSS and theme imports
- Minimal working example
### Pie vs Donut Configuration
๐ **Read:** [references/pie-donut-types.md](references/pie-donut-types.md)
- Pie chart implementation
- Donut chart implementation with innerRadius
- Converting between chart types
- Radius customization and various radius charts
- Series configuration and data mapping
- Point color mapping from data source
### Data Labels & Empty Points
๐ **Read:** [references/data-labels-empty-points.md](references/data-labels-empty-points.md)
- Enable and position data labels (inside/outside)
- Data label formatting with templates
- Connector line customization
- Empty point detection and handling
- Point color customization
- Conditional display strategies
### Interactivity: Tooltips, Legends & Selection
๐ **Read:** [references/interactivity-legends-tooltips.md](references/interactivity-legends-tooltips.md)
- Enable and configure tooltips
- Tooltip headers and custom formatting
- Tooltip templates with HTML
- Legend positioning and customization
- Legend interactions (show/hide series)
- Point and series selection
### Appearance, Titles & Styling
๐ **Read:** [references/appearance-titles-styling.md](references/appearance-titles-styling.md)
- Title and subtitle configuration
- Custom color palettes for series
- Point color customization
- Series styling options
- Theme application and customization
- Border and fill styling
### Print, Export & Accessibility
๐ **Read:** [references/print-export-accessibility.md](references/print-export-accessibility.md)
- Export charts as PNG, SVG, PDF
- Print functionality configuration
- WCAG 2.1 compliance guidelines
- Keyboard navigation support
- ARIA attributes and labels
- Screen reader optimization
---
## Quick Start Example
Here's a minimal example to get you started:
```typescript
import { Component } from '@angular/core';
import { CircularChart3DComponent, CircularChartSeriesCollectionDirective, CircularChartSeriesDirective } from '@syncfusion/ej2-angular-charts';
@Component({
selector: 'app-root',
standalone: true,
imports: [CircularChart3DComponent, CircularChartSeriesCollectionDirective, CircularChartSeriesDirective],
template: `
<ejs-circularchart3d id="container" [tooltip]="{ enable: true }">
<e-circularchart3d-series-collection>
<e-circularchart3d-series [dataSource]="chartData" xName="x" yName="y" type="Pie">
</e-circularchart3d-series>
</e-circularchart3d-series-collection>
</ejs-circularchart3d>
`
})
export class AppComponent {
chartData = [
{ x: 'Product A', y: 25 },
{ x: 'Product B', y: 20 },
{ x: 'Product C', y: 30 },
{ x: 'Product D', y: 25 }
];
}
```
---
## Common Patterns
### Pattern 1: Pie Chart with Data Labels
When user needs proportional data visualization with clear labels:
```typescript
@Component({
template: `
<ejs-circularchart3d>
<e-circularchart3d-series-collection>
<e-circularchart3d-series
[dataSource]="data"
xName="name"
yName="value"
type="Pie"
[dataLabel]="{ visible: true, position: 'Outside', name: 'x' }">
</e-circularchart3d-series>
</e-circularchart3d-series-collection>
</ejs-circularchart3d>
`
})
export class PieChartComponent {
data = [
{ name: 'Sales', value: 40 },
{ name: 'Marketing', value: 30 },
{ name: 'Support', value: 20 },
{ name: 'Operations', value: 10 }
];
}
```
### Pattern 2: Donut Chart with Legend and Tooltip
When user needs donut visualization with interactivity:
```typescript
export class DonutChartComponent {
@ViewChild('chart')
public chart!: CircularChart3DComponent;
data = [
{ x: 'Chrome', y: 45, color: '#5DADE2' },
{ x: 'Firefox', y: 25, color: '#F39C12' },
{ x: 'Safari', y: 20, color: '#48C9B0' },
{ x: 'Edge', y: 10, color: '#E74C3C' }
];
seriesSettings = {
dataSource: this.data,
xName: 'x',
yName: 'y',
pointColorMapping: 'color',
innerRadius: '50%',
type: 'Pie'
};
tooltipSettings = {
enable: true,
format: '${point.x}: ${point.y}%'
};
legendSettings = {
visible: true,
position: 'Bottom'
};
}
```
### Pattern 3: Chart with Custom Data Label Templates
When user needs formatted labels with dynamic values:
```typescript
export class CustomLabelChartComponent {
data = [
{ category: 'Jan', sales: 35 },
{ category: 'Feb', sales: 28 },
{ category: 'Mar', sales: 34 }
];
dataLabelTemplate = '<div>${point.x}: ${point.y}K</div>';
dataLabelSettings = {
visible: true,
template: this.dataLabelTemplate,
position: 'Outside'
};
}
```
---
## Key Props Reference
| Prop | Type | Purpose |
|------|------|---------|
| `type` | string | Chart type: 'Pie' or 'Donut' |
| `dataSource` | any[] | Array of data objects for chart |
| `xName` | string | Data property for category/label |
| `yName` | string | Data property for values |
| `innerRadius` | string | Donut hole size (0-100%, Pie: 0%, Donut: 40-60%) |
| `radius` | string | Chart radius (default: 80% of min width/height) |
| `pointColorMapping` | string | Data property for point colors |
| `dataLabel` | DataLabelSettings | Label configuration (visible, position, template) |
| `tooltip` | TooltipSettings | Tooltip settings (enable, format, template, header) |
| `legendSettings` | LegendSettings | Legend position and behavior |
| `title` | string | Chart title text |
| `subTitle` | string | Chart subtitle text |
| `enableSmartLabels` | boolean | Auto-arrange labels to avoid overlap (default: true) |
| `emptyPointSettings` | EmptyPointSettings | Handle missing data points |
---
## Common Use Cases
1. **Market Share Distribution:** Visualize product or service market share using pie charts
2. **Budget Allocation:** Show departmental budget breakdown with donut charts
3. **URelated in Writing & Docs
jax-development
IncludedUse this skill when the user is writing, debugging, profiling, refactoring, reviewing, benchmarking, parallelising, exporting, or explaining JAX code, or when they mention JAX, jax.numpy, jit, grad, value_and_grad, vmap, scan, lax, random keys, pytrees, jax.Array, sharding, Mesh, PartitionSpec, NamedSharding, pmap, shard_map, Pallas, XLA, StableHLO, checkify, profiler, or the JAX repo. It helps turn NumPy or PyTorch-style code into pure functional JAX, fix tracer/control-flow/shape/PRNG bugs, remove recompiles and host-device syncs, choose transforms and sharding strategies, inspect jaxpr/lowering/IR, and benchmark compiled code correctly.
nature-article-writer
IncludedDrafts, rewrites, diagnostically critiques, and style-calibrates primary research manuscripts for Nature and Nature Portfolio journals. Use when the user wants a Nature-style title, summary paragraph or abstract, introduction, results, discussion, methods, figure legends, presubmission enquiry, cover letter, reviewer response, or when a scientific draft sounds generic, jargon-heavy, structurally weak, or AI-ish and needs precise, broad-reader-friendly prose without inventing data, analyses, or references. Best for primary research articles and letters rather than reviews or press releases unless explicitly adapting one.
deckrd
IncludedDocument-driven framework that derives requirements, specifications, implementation plans, and executable tasks from goals through structured AI dialogue. Use when user says "write requirements", "create spec", "plan implementation", "derive tasks", "structure this feature", "break down into tasks", or "document this module". Also use for reverse engineering existing code into docs (/deckrd rev). Do NOT use for direct code writing โ use /deckrd-coder after tasks are generated. Do NOT use when the user only wants to run or fix existing code without planning.
clinical-decision-support
IncludedGenerate professional clinical decision support (CDS) documents for pharmaceutical and clinical research settings, including patient cohort analyses (biomarker-stratified with outcomes) and treatment recommendation reports (evidence-based guidelines with decision algorithms). Supports GRADE evidence grading, statistical analysis (hazard ratios, survival curves, waterfall plots), biomarker integration, and regulatory compliance. Outputs publication-ready LaTeX/PDF format optimized for drug development, clinical research, and evidence synthesis.
handling-sf-data
IncludedSalesforce data operations with 130-point scoring. Use this skill to create, update, delete, bulk import/export, generate test data, and clean up org records using sf CLI and anonymous Apex. TRIGGER when: user creates test data, performs bulk import/export, uses sf data CLI commands, needs data factory patterns for Apex tests, or needs to seed/clean records in a Salesforce org. DO NOT TRIGGER when: SOQL query writing only (use querying-soql), Apex test execution (use running-apex-tests), or metadata deployment (use deploying-metadata).
accelint-ac-to-playwright
IncludedConvert and validate acceptance criteria for Playwright test automation. Use when user asks to (1) review/evaluate/check if AC are ready for automation, (2) assess if AC can be converted as-is, (3) validate AC quality for Playwright, (4) turn AC into tests, (5) generate tests from acceptance criteria, (6) convert .md bullets or .feature Gherkin files to Playwright specs, (7) create test automation from requirements. Handles both bullet-style markdown and Gherkin syntax with JSON test plan generation and validation.