This demo uses imperative chart updates. The generated code is a faithful Angular translation: open it in CodeSandbox to run and tweak.

import { Component, AfterViewInit, OnDestroy, ViewChild } from '@angular/core';
import {
  ChartComponent,
  ApexAxisChartSeries,
  ApexNonAxisChartSeries,
  ApexChart,
  ApexXAxis,
  ApexYAxis,
  ApexTitleSubtitle,
  ApexDataLabels,
  ApexStroke,
  ApexFill,
  ApexLegend,
  ApexTooltip,
  ApexMarkers,
  ApexPlotOptions,
  ApexResponsive,
  ApexGrid,
  ApexAnnotations,
  ApexStates,
  ApexTheme,
  NgApexchartsModule,
} from 'ng-apexcharts';

export type ChartOptions = {
  series?: ApexAxisChartSeries | ApexNonAxisChartSeries;
  chart?: ApexChart;
  xaxis?: ApexXAxis;
  yaxis?: ApexYAxis | ApexYAxis[];
  title?: ApexTitleSubtitle;
  subtitle?: ApexTitleSubtitle;
  dataLabels?: ApexDataLabels;
  stroke?: ApexStroke;
  fill?: ApexFill;
  legend?: ApexLegend;
  tooltip?: ApexTooltip;
  markers?: ApexMarkers;
  plotOptions?: ApexPlotOptions;
  responsive?: ApexResponsive[];
  grid?: ApexGrid;
  annotations?: ApexAnnotations;
  states?: ApexStates;
  theme?: ApexTheme;
  colors?: string[];
  labels?: any;
};

@Component({
  selector: 'app-chart',
  standalone: true,
  imports: [NgApexchartsModule],
  templateUrl: './chart.component.html',
})
export class AppChart implements AfterViewInit, OnDestroy {
  @ViewChild('chart') chart!: ChartComponent;
  private deviceColors: any = ['#1565C0', '#2E7D32', '#EF6C00'];

  private mobileOsColors: any = ['#0D47A1', '#1976D2', '#64B5F6'];

  private iosColors: any = ['#1565C0', '#42A5F5', '#90CAF9'];

  private desktopOsColors: any = ['#1B5E20', '#388E3C', '#66BB6A'];

  private tabletOsColors: any = ['#E65100', '#FB8C00'];

  public chartOptions: Partial<ChartOptions> = {
          series: [
            {
              name: 'Devices',
              data: [
                { x: 'Mobile', y: 55, drilldown: 'mobile' },
                { x: 'Desktop', y: 33, drilldown: 'desktop' },
                { x: 'Tablet', y: 12, drilldown: 'tablet' },
              ],
            },
          ],
          chart: {
            type: 'sunburst',
            height: 480,
          },
          colors: this.deviceColors,
          legend: {
            position: 'bottom',
          },
          title: {
            text: 'Website traffic by device',
            align: 'left',
          },
          subtitle: {
            text: 'The same series + drilldown.series config as a drilldown donut, rendered as one sunburst.',
            align: 'left',
          },
          plotOptions: {
            sunburst: {
              innerSize: '20%',
            },
          },
          stroke: {
            width: 1,
            colors: ['#fff'],
          },
          drilldown: {
            series: [
              {
                id: 'mobile',
                name: 'Mobile by OS',
                colors: this.mobileOsColors,
                data: [
                  { x: 'iOS', y: 30, drilldown: 'mobile-ios' },
                  { x: 'Android', y: 23 },
                  { x: 'Other', y: 2 },
                ],
              },
              {
                id: 'mobile-ios',
                name: 'iOS Versions',
                colors: this.iosColors,
                data: [
                  { x: 'iOS 17', y: 18 },
                  { x: 'iOS 16', y: 9 },
                  { x: 'iOS 15', y: 3 },
                ],
              },
              {
                id: 'desktop',
                name: 'Desktop by OS',
                colors: this.desktopOsColors,
                data: [
                  { x: 'Windows', y: 20 },
                  { x: 'macOS', y: 10 },
                  { x: 'Linux', y: 3 },
                ],
              },
              {
                id: 'tablet',
                name: 'Tablet by OS',
                colors: this.tabletOsColors,
                data: [
                  { x: 'iPadOS', y: 8 },
                  { x: 'Android', y: 4 },
                ],
              },
            ],
          },
        };
  ngAfterViewInit() {
    (window as any).ApexCharts.setLicense('APEX-eyJleHBpcnlEYXRlIjoiMjEyNi0wNy0wNCIsImlzc3VlRGF0ZSI6IjIwMjYtMDctMjgiLCJwbGFuIjoicHJlbWl1bSIsImRvbWFpbnMiOlsiYXBleGNoYXJ0cy5jb20iLCIxMjcuMC4wLjEiLCJsb2NhbGhvc3QiXSwic2lnIjoieVBmb1VCc0Z3TU9ZdUEyaEZkR0I2Y1FtZ0JITUtXcVdJSjB2NVRESXRZbFR3eDJMUmh6R2x0RUc3VXJ4X0s3b25ZMWRZb2Z2VGItN01ydFYyNDVyOWcifQ==');
  }

  ngOnDestroy() {
    // no cleanup needed
  }
}
Sunburst from Drilldown - Angular Sunburst Charts | ApexCharts.js | ApexCharts.js