Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | 1x 17x 5x 5x 5x 5x 5x 5x | /**
* Copyright (c) Siemens 2016 - 2026
* SPDX-License-Identifier: MIT
*/
import { Component, input } from '@angular/core';
import { SiChartBaseComponent, SunburstSeriesOption, echarts } from '@siemens/charts-ng/common';
import { SiCustomLegendComponent } from '@siemens/charts-ng/custom-legend';
import { SiChartLoadingSpinnerComponent } from '@siemens/charts-ng/loading-spinner';
import { SunburstChart } from 'echarts/charts';
echarts.use([SunburstChart]);
@Component({
selector: 'si-chart-sunburst',
imports: [SiCustomLegendComponent, SiChartLoadingSpinnerComponent],
templateUrl: '../common/si-chart-base.component.html',
styleUrl: '../common/si-chart-base.component.scss'
})
export class SiChartSunburstComponent extends SiChartBaseComponent {
/** The series for the chart. */
readonly series = input<SunburstSeriesOption>();
/**
* @deprecated Use `tooltip` instead.
* @defaultValue false
*/
readonly toolTip = input(false);
/** @defaultValue false */
readonly tooltip = input(false);
protected override applyOptions(): void {
const series = this.series();
this.actualOptions = {
series: series ? [{ type: 'sunburst', ...series }] : [],
tooltip: { show: this.toolTip() || this.tooltip() }
};
this.applyTitles();
}
}
|