agentsclimarketplace

Syncfusion angular 3d chart

Skill syncfusion/angular-ui-components-skills/skills/syncfusion-angular-3d-chart

This repository contains agent prompts for creating skills and organizing AI agent capabilities.

Install
npx -y skills add syncfusion/angular-ui-components-skills --skill syncfusion-angular-3d-chart

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Implement interactive 3D charts in Angular applications using Syncfusion. Guide covers setup, chart types (bar, column, stacked variants), customization, data binding, axis configuration, legends, tooltips, selection, data labels, appearance styling, dimensions, print/export, and accessibility. Use this skill whenever a user needs to create, configure, or customize 3D chart visualizations.

SKILL.md

8.9 KB, as published. Nobody here has run it

Implementing Syncfusion Angular 3D Chart

When to Use This Skill

Use this skill when you need to:

  • Create a 3D chart from scratch in an Angular application
  • Display data in interactive 3D visualizations (bar, column, stacked variants)
  • Customize chart appearance, colors, and styling
  • Configure axes with different types (category, numeric, datetime, logarithmic)
  • Add interactive features like tooltips, selection, data labels, and legends
  • Implement data binding with local or remote data
  • Export or print charts as images or PDFs
  • Ensure accessibility for screen readers and keyboard navigation
  • Work with dimensions and 3D perspective settings

Component Overview

The Syncfusion Angular 3D Chart component provides a comprehensive solution for creating interactive three-dimensional data visualizations. It supports multiple chart types (bar, column, stacked configurations), advanced customization options, and robust data binding capabilities. The component is designed for Angular 21+ with standalone architecture and includes accessibility features, keyboard navigation, and multiple export formats.

Key Capabilities

  • Multiple Chart Types: Bar, Column, Stacked Bar, Stacked Column
  • Axis Types: Category, Numeric, DateTime, Logarithmic
  • Interactive Features: Tooltips, selection modes, data labels, legends
  • Customization: Colors, themes, styling, 3D dimensions
  • Data Binding: Local arrays, remote data sources, dynamic updates
  • Export/Print: PNG, SVG, PDF formats
  • Accessibility: WCAG compliance, ARIA attributes, keyboard support

Documentation and Navigation Guide

API Reference

πŸ“„ Read: references/api-reference.md

Getting Started

πŸ“„ Read: references/getting-started.md

  • Installation and package setup
  • Create your first 3D chart
  • Basic component configuration
  • CSS and theme imports
  • Minimal working example

Chart Types & Configuration

πŸ“„ Read: references/chart-types.md

  • Bar chart implementation
  • Column chart implementation
  • Stacked column configuration
  • Stacked bar configuration
  • Switching between chart types
  • Series configuration

Axis & Data Setup

πŸ“„ Read: references/axis-customization.md

  • Category axis setup
  • Numeric axis configuration
  • DateTime axis setup
  • Logarithmic axis support
  • Multi-pane configurations

πŸ“„ Read: references/axis-labels.md

  • Label formatting and display
  • Label positioning and rotation
  • Custom label templates
  • Label appearance customization

Data & Labels

πŸ“„ Read: references/data-labels.md

  • Enable and position data labels
  • Label formatting options
  • Custom data label templates
  • Conditional label display

πŸ“„ Read: references/working-with-data.md

  • Data binding approaches (arrays, objects)
  • Category data configuration
  • Remote data loading
  • Real-time data updates
  • Data refresh patterns

Appearance & Styling

πŸ“„ Read: references/appearance.md

  • Custom color palettes
  • Point color customization
  • Series styling options
  • Theme application

πŸ“„ Read: references/dimensions.md

  • 3D depth and perspective control
  • Chart width and height configuration
  • Rotation and tilt settings
  • Wall and corner customization

Interactive Features

πŸ“„ Read: references/tool-tip.md

  • Enable and configure tooltips
  • Tooltip templates and formatting
  • Custom styling options
  • Tooltip events and interactions

πŸ“„ Read: references/selection.md

  • Point selection modes
  • Multiple selection configurations
  • Selection styling
  • Selection events

πŸ“„ Read: references/legend.md

  • Enable and position legends
  • Legend customization
  • Custom legend items
  • Legend interactions

Advanced Features

πŸ“„ Read: references/print-export.md

  • Export as PNG, SVG, PDF
  • Print functionality
  • Export configuration options
  • File naming and paths

πŸ“„ Read: references/accessibility.md

  • WCAG 2.1 compliance guidelines
  • Keyboard navigation support
  • ARIA attributes and labels
  • Screen reader optimization
  • Color contrast and visual accessibility

Quick Start Example

Here's a minimal example to get you started:

import { Component } from '@angular/core';
import { Chart3DComponent, Chart3DSeriesCollectionDirective, Chart3DSeriesDirective } from '@syncfusion/ej2-angular-charts';

@Component({
  selector: 'app-root',
  standalone: true,
  imports: [Chart3DComponent, Chart3DSeriesCollectionDirective, Chart3DSeriesDirective],
  template: `
    <ejs-chart3d [primaryXAxis]="xAxis" [primaryYAxis]="yAxis">
      <e-chart3d-series-collection>
        <e-chart3d-series [dataSource]="chartData" xName="month" yName="sales" type="Column">
        </e-chart3d-series>
      </e-chart3d-series-collection>
    </ejs-chart3d>
  `
})
export class AppComponent {
  chartData = [
    { month: 'Jan', sales: 35 },
    { month: 'Feb', sales: 28 },
    { month: 'Mar', sales: 34 },
    { month: 'Apr', sales: 32 },
    { month: 'May', sales: 40 }
  ];

  xAxis = { valueType: 'Category' };
  yAxis = { labelFormat: '{value}%' };
}

Common Patterns

Pattern 1: Dynamic Data Binding

When user needs real-time updates, bind data to a property and use change detection:

@Component({
  template: `
    <ejs-chart3d [primaryXAxis]="xAxis">
      <e-chart3d-series-collection>
        <e-chart3d-series [dataSource]="dynamicData" xName="x" yName="y" type="Column">
        </e-chart3d-series>
      </e-chart3d-series-collection>
    </ejs-chart3d>
  `
})
export class DynamicChartComponent {
  dynamicData: any[] = [];

  constructor() {
    this.loadData();
    setInterval(() => this.loadData(), 5000); // Update every 5 seconds
  }

  loadData() {
    this.dynamicData = this.generateData();
  }

  private generateData() {
    return [
      { x: 'A', y: Math.random() * 100 },
      { x: 'B', y: Math.random() * 100 }
    ];
  }
}

Pattern 2: Multiple Chart Types

When user needs to switch between visualization types:

export class MultiTypeChartComponent {
  chartType: string = 'Column';

  switchChartType(type: string) {
    this.chartType = type; // Changes 'type' in series
  }
}

Pattern 3: Custom Color Palette

When user wants brand-specific colors:

@Component({
  template: `
    <ejs-chart3d [palettes]="customPalette">
      ...
    </ejs-chart3d>
  `
})
export class CustomPaletteComponent {
  customPalette = ['#FF6B6B', '#4ECDC4', '#45B7D1', '#FFA07A', '#98D8C8'];
}

Key Props Reference

PropTypePurpose
primaryXAxisAxisModelConfigures X-axis (type, labels, range)
primaryYAxisAxisModelConfigures Y-axis (type, labels, range)
dataSourceany[]Array of data objects for chart
xNamestringData property for X values
yNamestringData property for Y values
typestringChart type (Column, Bar, StackedColumn, StackedBar)
namestringSeries name for legend
palettesstring[]Custom color array for series
enableTooltipbooleanShow tooltips on hover
legendSettingsLegendSettingsConfigure legend appearance and behavior
tooltipTooltipSettingsCustomize tooltip template and styling
markerMarkerSettingsConfigure data point markers
dataLabelDataLabelSettingsEnable and format data labels

Common Use Cases

  1. Sales Dashboard: Display monthly sales by region using stacked columns
  2. Inventory Analytics: Compare stock levels across warehouses using bar charts
  3. Performance Tracking: Visualize KPIs over time with multiple series
  4. Comparative Analysis: Side-by-side data comparison using grouped columns
  5. Trend Analysis: Track changes across categories with animated transitions
  6. Budget vs. Actual: Compare planned vs. actual spending using stacked configurations

For more information, visit the Syncfusion Angular 3D Chart Documentation.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.