@siemens/charts-ng 48.1.0 → 48.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/siemens-charts-ng.mjs +17 -10
- package/fesm2022/siemens-charts-ng.mjs.map +1 -1
- package/index.d.ts +26 -5
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -384,7 +384,6 @@ declare class SiChartComponent implements AfterViewInit, OnChanges, OnInit, OnDe
|
|
|
384
384
|
protected readonly containerHeight: _angular_core.WritableSignal<number | null>;
|
|
385
385
|
protected activeTheme: any;
|
|
386
386
|
protected autoZoomUpdate: boolean;
|
|
387
|
-
private subscriptions;
|
|
388
387
|
private prevAxisPointer;
|
|
389
388
|
private lastValidDataZoom;
|
|
390
389
|
private presetDataZoomRange?;
|
|
@@ -663,6 +662,18 @@ interface CircleChartSeries {
|
|
|
663
662
|
name: string;
|
|
664
663
|
radius?: string[];
|
|
665
664
|
data: CircleChartData[];
|
|
665
|
+
/**
|
|
666
|
+
* The start angle from which the circle should start, the range is [0, 360].
|
|
667
|
+
* @defaultValue 90
|
|
668
|
+
*/
|
|
669
|
+
startAngle?: number;
|
|
670
|
+
/**
|
|
671
|
+
* The end angle where the circle should end.
|
|
672
|
+
*
|
|
673
|
+
* @defaultValue 'auto' - In this case the end Angle is calculated
|
|
674
|
+
* automatically based on startAngle to ensure it is a complete circle.
|
|
675
|
+
*/
|
|
676
|
+
endAngle?: number;
|
|
666
677
|
label?: {
|
|
667
678
|
/**
|
|
668
679
|
* A custom label formatter based on echarts, some commonly used variations can be
|
|
@@ -889,21 +900,31 @@ declare class SiChartProgressBarComponent extends SiChartComponent {
|
|
|
889
900
|
declare class SiChartSankeyComponent extends SiChartComponent {
|
|
890
901
|
/** The series for the chart. */
|
|
891
902
|
readonly series: _angular_core.InputSignal<SankeySeriesOption | undefined>;
|
|
892
|
-
/**
|
|
903
|
+
/**
|
|
904
|
+
* @deprecated Use `tooltip` instead.
|
|
905
|
+
* @defaultValue false
|
|
906
|
+
*/
|
|
893
907
|
readonly toolTip: _angular_core.InputSignal<boolean>;
|
|
908
|
+
/** @defaultValue false */
|
|
909
|
+
readonly tooltip: _angular_core.InputSignal<boolean>;
|
|
894
910
|
protected applyOptions(): void;
|
|
895
911
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SiChartSankeyComponent, never>;
|
|
896
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SiChartSankeyComponent, "si-chart-sankey", never, { "series": { "alias": "series"; "required": false; "isSignal": true; }; "toolTip": { "alias": "toolTip"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=timeRangeBar]"], true, never>;
|
|
912
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SiChartSankeyComponent, "si-chart-sankey", never, { "series": { "alias": "series"; "required": false; "isSignal": true; }; "toolTip": { "alias": "toolTip"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=timeRangeBar]"], true, never>;
|
|
897
913
|
}
|
|
898
914
|
|
|
899
915
|
declare class SiChartSunburstComponent extends SiChartComponent {
|
|
900
916
|
/** The series for the chart. */
|
|
901
917
|
readonly series: _angular_core.InputSignal<SunburstSeriesOption | undefined>;
|
|
902
|
-
/**
|
|
918
|
+
/**
|
|
919
|
+
* @deprecated Use `tooltip` instead.
|
|
920
|
+
* @defaultValue false
|
|
921
|
+
*/
|
|
903
922
|
readonly toolTip: _angular_core.InputSignal<boolean>;
|
|
923
|
+
/** @defaultValue false */
|
|
924
|
+
readonly tooltip: _angular_core.InputSignal<boolean>;
|
|
904
925
|
protected applyOptions(): void;
|
|
905
926
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SiChartSunburstComponent, never>;
|
|
906
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SiChartSunburstComponent, "si-chart-sunburst", never, { "series": { "alias": "series"; "required": false; "isSignal": true; }; "toolTip": { "alias": "toolTip"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=timeRangeBar]"], true, never>;
|
|
927
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SiChartSunburstComponent, "si-chart-sunburst", never, { "series": { "alias": "series"; "required": false; "isSignal": true; }; "toolTip": { "alias": "toolTip"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; }, {}, never, ["[slot=timeRangeBar]"], true, never>;
|
|
907
928
|
}
|
|
908
929
|
|
|
909
930
|
declare const themeSupport: {
|