@syncfusion/ej2-angular-charts 32.2.9 → 33.1.44

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.
Files changed (43) hide show
  1. package/CHANGELOG.md +31 -33
  2. package/esm2020/src/accumulation-chart/accumulationchart.component.mjs +8 -2
  3. package/esm2020/src/accumulation-chart/series.directive.mjs +3 -3
  4. package/esm2020/src/chart/chart-all.module.mjs +7 -4
  5. package/esm2020/src/chart/chart.component.mjs +16 -3
  6. package/esm2020/src/chart/indicators.directive.mjs +3 -3
  7. package/esm2020/src/chart/series.directive.mjs +3 -3
  8. package/esm2020/src/chart/trendlines.directive.mjs +3 -3
  9. package/esm2020/src/index.mjs +7 -2
  10. package/esm2020/src/sankey/links.directive.mjs +54 -0
  11. package/esm2020/src/sankey/nodes.directive.mjs +54 -0
  12. package/esm2020/src/sankey/sankey-all.module.mjs +38 -0
  13. package/esm2020/src/sankey/sankey.component.mjs +110 -0
  14. package/esm2020/src/sankey/sankey.module.mjs +43 -0
  15. package/esm2020/src/stock-chart/indicators.directive.mjs +3 -3
  16. package/esm2020/src/stock-chart/series.directive.mjs +3 -3
  17. package/esm2020/src/stock-chart/stockchart.component.mjs +16 -3
  18. package/esm2020/src/stock-chart/trendlines.directive.mjs +3 -3
  19. package/fesm2015/syncfusion-ej2-angular-charts.mjs +595 -287
  20. package/fesm2015/syncfusion-ej2-angular-charts.mjs.map +1 -1
  21. package/fesm2020/syncfusion-ej2-angular-charts.mjs +595 -287
  22. package/fesm2020/syncfusion-ej2-angular-charts.mjs.map +1 -1
  23. package/package.json +6 -5
  24. package/schematics/utils/lib-details.d.ts +3 -3
  25. package/schematics/utils/lib-details.js +3 -3
  26. package/schematics/utils/lib-details.ts +3 -3
  27. package/src/accumulation-chart/accumulationchart.component.d.ts +2 -1
  28. package/src/accumulation-chart/series.directive.d.ts +14 -1
  29. package/src/chart/chart-all.module.d.ts +1 -0
  30. package/src/chart/chart.component.d.ts +3 -1
  31. package/src/chart/indicators.directive.d.ts +11 -1
  32. package/src/chart/series.directive.d.ts +18 -1
  33. package/src/chart/trendlines.directive.d.ts +11 -1
  34. package/src/index.d.ts +6 -1
  35. package/src/sankey/links.directive.d.ts +46 -0
  36. package/src/sankey/nodes.directive.d.ts +49 -0
  37. package/src/sankey/sankey-all.module.d.ts +16 -0
  38. package/src/sankey/sankey.component.d.ts +56 -0
  39. package/src/sankey/sankey.module.d.ts +13 -0
  40. package/src/stock-chart/indicators.directive.d.ts +14 -1
  41. package/src/stock-chart/series.directive.d.ts +18 -1
  42. package/src/stock-chart/stockchart.component.d.ts +3 -1
  43. package/src/stock-chart/trendlines.directive.d.ts +11 -1
@@ -111,6 +111,10 @@ export declare class StockChartSeriesDirective extends ComplexBase<StockChartSer
111
111
  * @default ''
112
112
  */
113
113
  high: any;
114
+ /**
115
+ * Configures the options for displaying series names as inline labels in the stock chart.
116
+ */
117
+ labelSettings: any;
114
118
  /**
115
119
  * Options for customizing and displaying the last value in the series.
116
120
  */
@@ -136,6 +140,13 @@ export declare class StockChartSeriesDirective extends ComplexBase<StockChartSer
136
140
  * @default 'SeriesType'
137
141
  */
138
142
  legendShape: any;
143
+ /**
144
+ * Applies a linear gradient fill to the series.
145
+ * The gradient transitions colors along a straight line.
146
+ * When both linearGradient and radialGradient are specified, linearGradient takes precedence.
147
+ * @default null
148
+ */
149
+ linearGradient: any;
139
150
  /**
140
151
  * The DataSource field that contains the low value of y
141
152
  * It is applicable for series and technical indicators
@@ -173,6 +184,12 @@ export declare class StockChartSeriesDirective extends ComplexBase<StockChartSer
173
184
  * @default null
174
185
  */
175
186
  query: any;
187
+ /**
188
+ * Applies a radial gradient fill to the series.
189
+ * The gradient transitions colors outward from a central point.
190
+ * @default null
191
+ */
192
+ radialGradient: any;
176
193
  /**
177
194
  * Custom style for the selected series or points.
178
195
  * @default null
@@ -234,7 +251,7 @@ export declare class StockChartSeriesDirective extends ComplexBase<StockChartSer
234
251
  yName: any;
235
252
  constructor(viewContainerRef: ViewContainerRef);
236
253
  static ɵfac: i0.ɵɵFactoryDeclaration<StockChartSeriesDirective, never>;
237
- static ɵdir: i0.ɵɵDirectiveDeclaration<StockChartSeriesDirective, "e-stockchart-series-collection>e-stockchart-series", never, { "animation": "animation"; "bearFillColor": "bearFillColor"; "border": "border"; "bullFillColor": "bullFillColor"; "cardinalSplineTension": "cardinalSplineTension"; "close": "close"; "columnSpacing": "columnSpacing"; "columnWidth": "columnWidth"; "cornerRadius": "cornerRadius"; "dashArray": "dashArray"; "dataSource": "dataSource"; "emptyPointSettings": "emptyPointSettings"; "enableSolidCandles": "enableSolidCandles"; "enableTooltip": "enableTooltip"; "fill": "fill"; "high": "high"; "lastValueLabel": "lastValueLabel"; "legendImageUrl": "legendImageUrl"; "legendShape": "legendShape"; "low": "low"; "marker": "marker"; "name": "name"; "opacity": "opacity"; "open": "open"; "pointColorMapping": "pointColorMapping"; "query": "query"; "selectionStyle": "selectionStyle"; "showNearestTooltip": "showNearestTooltip"; "tooltipMappingName": "tooltipMappingName"; "trendlines": "trendlines"; "type": "type"; "visible": "visible"; "volume": "volume"; "width": "width"; "xAxisName": "xAxisName"; "xName": "xName"; "yAxisName": "yAxisName"; "yName": "yName"; }, {}, ["childTrendlines"]>;
254
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StockChartSeriesDirective, "e-stockchart-series-collection>e-stockchart-series", never, { "animation": "animation"; "bearFillColor": "bearFillColor"; "border": "border"; "bullFillColor": "bullFillColor"; "cardinalSplineTension": "cardinalSplineTension"; "close": "close"; "columnSpacing": "columnSpacing"; "columnWidth": "columnWidth"; "cornerRadius": "cornerRadius"; "dashArray": "dashArray"; "dataSource": "dataSource"; "emptyPointSettings": "emptyPointSettings"; "enableSolidCandles": "enableSolidCandles"; "enableTooltip": "enableTooltip"; "fill": "fill"; "high": "high"; "labelSettings": "labelSettings"; "lastValueLabel": "lastValueLabel"; "legendImageUrl": "legendImageUrl"; "legendShape": "legendShape"; "linearGradient": "linearGradient"; "low": "low"; "marker": "marker"; "name": "name"; "opacity": "opacity"; "open": "open"; "pointColorMapping": "pointColorMapping"; "query": "query"; "radialGradient": "radialGradient"; "selectionStyle": "selectionStyle"; "showNearestTooltip": "showNearestTooltip"; "tooltipMappingName": "tooltipMappingName"; "trendlines": "trendlines"; "type": "type"; "visible": "visible"; "volume": "volume"; "width": "width"; "xAxisName": "xAxisName"; "xName": "xName"; "yAxisName": "yAxisName"; "yName": "yName"; }, {}, ["childTrendlines"]>;
238
255
  }
239
256
  /**
240
257
  * StockChartSeries Array Directive
@@ -28,6 +28,7 @@ export declare class StockChartComponent extends StockChart implements IComponen
28
28
  tagObjects: any;
29
29
  axisLabelRender: any;
30
30
  beforeExport: any;
31
+ crosshairLabelRender: any;
31
32
  legendClick: any;
32
33
  legendRender: any;
33
34
  load: any;
@@ -56,6 +57,7 @@ export declare class StockChartComponent extends StockChart implements IComponen
56
57
  childIndicators: QueryList<StockChartIndicatorsDirective>;
57
58
  tags: string[];
58
59
  tooltip_template: any;
60
+ legendSettings_template: any;
59
61
  constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
60
62
  ngOnInit(): void;
61
63
  ngAfterViewInit(): void;
@@ -64,5 +66,5 @@ export declare class StockChartComponent extends StockChart implements IComponen
64
66
  registerEvents: (eventList: string[]) => void;
65
67
  addTwoWay: (propList: string[]) => void;
66
68
  static ɵfac: i0.ɵɵFactoryDeclaration<StockChartComponent, never>;
67
- static ɵcmp: i0.ɵɵComponentDeclaration<StockChartComponent, "ejs-stockchart", never, { "annotations": "annotations"; "axes": "axes"; "background": "background"; "border": "border"; "chartArea": "chartArea"; "crosshair": "crosshair"; "dataSource": "dataSource"; "enableCustomRange": "enableCustomRange"; "enablePeriodSelector": "enablePeriodSelector"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableSelector": "enableSelector"; "exportType": "exportType"; "height": "height"; "indicatorType": "indicatorType"; "indicators": "indicators"; "isMultiSelect": "isMultiSelect"; "isSelect": "isSelect"; "isTransposed": "isTransposed"; "legendSettings": "legendSettings"; "locale": "locale"; "margin": "margin"; "noDataTemplate": "noDataTemplate"; "periods": "periods"; "primaryXAxis": "primaryXAxis"; "primaryYAxis": "primaryYAxis"; "rows": "rows"; "selectedDataIndexes": "selectedDataIndexes"; "selectionMode": "selectionMode"; "series": "series"; "seriesType": "seriesType"; "stockEvents": "stockEvents"; "theme": "theme"; "title": "title"; "titleStyle": "titleStyle"; "tooltip": "tooltip"; "trendlineType": "trendlineType"; "width": "width"; "zoomSettings": "zoomSettings"; }, { "axisLabelRender": "axisLabelRender"; "beforeExport": "beforeExport"; "legendClick": "legendClick"; "legendRender": "legendRender"; "load": "load"; "loaded": "loaded"; "onZooming": "onZooming"; "pointClick": "pointClick"; "pointMove": "pointMove"; "rangeChange": "rangeChange"; "selectorRender": "selectorRender"; "seriesRender": "seriesRender"; "stockChartMouseClick": "stockChartMouseClick"; "stockChartMouseDown": "stockChartMouseDown"; "stockChartMouseLeave": "stockChartMouseLeave"; "stockChartMouseMove": "stockChartMouseMove"; "stockChartMouseUp": "stockChartMouseUp"; "stockEventRender": "stockEventRender"; "tooltipRender": "tooltipRender"; "dataSourceChange": "dataSourceChange"; }, ["tooltip_template", "childSeries", "childAxes", "childRows", "childAnnotations", "childSelectedDataIndexes", "childPeriods", "childStockEvents", "childIndicators"], never>;
69
+ static ɵcmp: i0.ɵɵComponentDeclaration<StockChartComponent, "ejs-stockchart", never, { "annotations": "annotations"; "axes": "axes"; "background": "background"; "border": "border"; "chartArea": "chartArea"; "crosshair": "crosshair"; "dataSource": "dataSource"; "enableCustomRange": "enableCustomRange"; "enablePeriodSelector": "enablePeriodSelector"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "enableSelector": "enableSelector"; "exportType": "exportType"; "height": "height"; "indicatorType": "indicatorType"; "indicators": "indicators"; "isMultiSelect": "isMultiSelect"; "isSelect": "isSelect"; "isTransposed": "isTransposed"; "legendSettings": "legendSettings"; "locale": "locale"; "margin": "margin"; "noDataTemplate": "noDataTemplate"; "periods": "periods"; "primaryXAxis": "primaryXAxis"; "primaryYAxis": "primaryYAxis"; "rows": "rows"; "selectedDataIndexes": "selectedDataIndexes"; "selectionMode": "selectionMode"; "series": "series"; "seriesType": "seriesType"; "stockEvents": "stockEvents"; "theme": "theme"; "title": "title"; "titleStyle": "titleStyle"; "tooltip": "tooltip"; "trendlineType": "trendlineType"; "width": "width"; "zoomSettings": "zoomSettings"; }, { "axisLabelRender": "axisLabelRender"; "beforeExport": "beforeExport"; "crosshairLabelRender": "crosshairLabelRender"; "legendClick": "legendClick"; "legendRender": "legendRender"; "load": "load"; "loaded": "loaded"; "onZooming": "onZooming"; "pointClick": "pointClick"; "pointMove": "pointMove"; "rangeChange": "rangeChange"; "selectorRender": "selectorRender"; "seriesRender": "seriesRender"; "stockChartMouseClick": "stockChartMouseClick"; "stockChartMouseDown": "stockChartMouseDown"; "stockChartMouseLeave": "stockChartMouseLeave"; "stockChartMouseMove": "stockChartMouseMove"; "stockChartMouseUp": "stockChartMouseUp"; "stockEventRender": "stockEventRender"; "tooltipRender": "tooltipRender"; "dataSourceChange": "dataSourceChange"; }, ["tooltip_template", "legendSettings_template", "childSeries", "childAxes", "childRows", "childAnnotations", "childSelectedDataIndexes", "childPeriods", "childStockEvents", "childIndicators"], never>;
68
70
  }
@@ -73,6 +73,11 @@ export declare class StockChartTrendlineDirective extends ComplexBase<StockChart
73
73
  * @default 'SeriesType'
74
74
  */
75
75
  legendShape: any;
76
+ /**
77
+ * Applies a linear gradient fill to the trendline.
78
+ * @default null
79
+ */
80
+ linearGradient: any;
76
81
  /**
77
82
  * Options for customizing the markers for trendlines, including shape, size, color, and other visual aspects.
78
83
  * @deprecated
@@ -93,6 +98,11 @@ export declare class StockChartTrendlineDirective extends ComplexBase<StockChart
93
98
  * @default 2
94
99
  */
95
100
  polynomialOrder: any;
101
+ /**
102
+ * Applies a radial gradient fill to the trendline.
103
+ * @default null
104
+ */
105
+ radialGradient: any;
96
106
  /**
97
107
  * The `visible` property controls the display of the trendline. If set to true, the trendline will be rendered on the chart. If set to false, the trendline will be hidden.
98
108
  * @default true
@@ -105,7 +115,7 @@ export declare class StockChartTrendlineDirective extends ComplexBase<StockChart
105
115
  width: any;
106
116
  constructor(viewContainerRef: ViewContainerRef);
107
117
  static ɵfac: i0.ɵɵFactoryDeclaration<StockChartTrendlineDirective, never>;
108
- static ɵdir: i0.ɵɵDirectiveDeclaration<StockChartTrendlineDirective, "e-stockchart-series>e-trendlines>e-trendline", never, { "accessibility": "accessibility"; "animation": "animation"; "backwardForecast": "backwardForecast"; "dashArray": "dashArray"; "enableTooltip": "enableTooltip"; "fill": "fill"; "forwardForecast": "forwardForecast"; "intercept": "intercept"; "legendShape": "legendShape"; "marker": "marker"; "name": "name"; "period": "period"; "polynomialOrder": "polynomialOrder"; "type": "type"; "visible": "visible"; "width": "width"; }, {}, never>;
118
+ static ɵdir: i0.ɵɵDirectiveDeclaration<StockChartTrendlineDirective, "e-stockchart-series>e-trendlines>e-trendline", never, { "accessibility": "accessibility"; "animation": "animation"; "backwardForecast": "backwardForecast"; "dashArray": "dashArray"; "enableTooltip": "enableTooltip"; "fill": "fill"; "forwardForecast": "forwardForecast"; "intercept": "intercept"; "legendShape": "legendShape"; "linearGradient": "linearGradient"; "marker": "marker"; "name": "name"; "period": "period"; "polynomialOrder": "polynomialOrder"; "radialGradient": "radialGradient"; "type": "type"; "visible": "visible"; "width": "width"; }, {}, never>;
109
119
  }
110
120
  /**
111
121
  * StockChartTrendline Array Directive