@progress/kendo-angular-charts 13.6.0-develop.1 → 13.6.0-develop.3
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/chart/series-item/trendline.component.d.ts +21 -0
- package/chart/series-item/trendline.forecast.component.d.ts +26 -0
- package/chart/series-item.component.d.ts +9 -2
- package/chart.directives.d.ts +3 -1
- package/chart.module.d.ts +38 -36
- package/common/property-types.d.ts +2 -0
- package/esm2020/chart/series-item/trendline.component.mjs +33 -0
- package/esm2020/chart/series-item/trendline.forecast.component.mjs +35 -0
- package/esm2020/chart/series-item.component.mjs +5 -1
- package/esm2020/chart.component.mjs +3 -3
- package/esm2020/chart.directives.mjs +5 -1
- package/esm2020/chart.module.mjs +34 -32
- package/esm2020/field-types/trendline-forecast.interface.mjs +5 -0
- package/esm2020/option-types/series-item/trendline.interface.mjs +5 -0
- package/esm2020/package-metadata.mjs +2 -2
- package/fesm2015/progress-kendo-angular-charts.mjs +66 -8
- package/fesm2020/progress-kendo-angular-charts.mjs +66 -8
- package/field-types/series-type.d.ts +3 -1
- package/field-types/trendline-forecast.interface.d.ts +17 -0
- package/option-types/series-item/trendline.interface.d.ts +22 -0
- package/option-types/series-item.interface.d.ts +13 -1
- package/package.json +8 -8
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ConfigurationService } from '../../common/configuration.service';
|
|
6
|
+
import { TrendlineForecast } from '../../common/property-types';
|
|
7
|
+
import { SeriesTrendline } from '../../common/property-types';
|
|
8
|
+
import { SettingsComponent } from '../../common/settings.component';
|
|
9
|
+
import * as i0 from "@angular/core";
|
|
10
|
+
/**
|
|
11
|
+
* The configuration options of the Chart trendline series
|
|
12
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
13
|
+
*/
|
|
14
|
+
export declare class SeriesTrendlineComponent extends SettingsComponent implements SeriesTrendline {
|
|
15
|
+
configurationService: ConfigurationService;
|
|
16
|
+
period: number;
|
|
17
|
+
forecast: TrendlineForecast;
|
|
18
|
+
constructor(configurationService: ConfigurationService);
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesTrendlineComponent, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesTrendlineComponent, "kendo-chart-series-item-trendline", never, { "period": "period"; "forecast": "forecast"; }, {}, never, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ConfigurationService } from '../../common/configuration.service';
|
|
6
|
+
import { TrendlineForecast } from '../../common/property-types';
|
|
7
|
+
import { SettingsComponent } from '../../common/settings.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
/**
|
|
10
|
+
* The configuration options of the Chart trendline forecast
|
|
11
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
12
|
+
*/
|
|
13
|
+
export declare class SeriesTrendlineForecastComponent extends SettingsComponent implements TrendlineForecast {
|
|
14
|
+
configurationService: ConfigurationService;
|
|
15
|
+
before: number;
|
|
16
|
+
after: number;
|
|
17
|
+
/**
|
|
18
|
+
* The series trendline forecast settings.
|
|
19
|
+
*
|
|
20
|
+
* The `forecast` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"linearTrendline"` and the parent series are either date series, `"scatter"` or `"scatterLine"` series.
|
|
21
|
+
*/
|
|
22
|
+
forecast: TrendlineForecast;
|
|
23
|
+
constructor(configurationService: ConfigurationService);
|
|
24
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesTrendlineForecastComponent, never>;
|
|
25
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesTrendlineForecastComponent, "kendo-chart-series-item-trendline-forecast", never, { "before": "before"; "after": "after"; "forecast": "forecast"; }, {}, never, never>;
|
|
26
|
+
}
|
|
@@ -7,7 +7,7 @@ import { drawing } from '@progress/kendo-drawing';
|
|
|
7
7
|
import { CollectionItemComponent } from '../common/collection-item.component';
|
|
8
8
|
import { CollectionService } from '../common/collection.service';
|
|
9
9
|
import { ConfigurationService } from '../common/configuration.service';
|
|
10
|
-
import { Border, BulletTarget, DashType, LabelConnectors, LineStyle, Margin, NegativeBubbleValues, Overlay, Series, SeriesErrorBars, SeriesExtremes, SeriesHighlight, SeriesLabels, SeriesLine, SeriesMarkers, SeriesMean, SeriesMedian, SeriesNotes, SeriesOutliers, SeriesStack, SeriesTooltip, SeriesType, SeriesVisualArgs, SeriesWhiskers } from '../common/property-types';
|
|
10
|
+
import { Border, BulletTarget, DashType, LabelConnectors, LineStyle, Margin, NegativeBubbleValues, Overlay, Series, SeriesErrorBars, SeriesExtremes, SeriesHighlight, SeriesLabels, SeriesLine, SeriesMarkers, SeriesMean, SeriesMedian, SeriesNotes, SeriesOutliers, SeriesStack, SeriesTooltip, SeriesTrendline, SeriesType, SeriesVisualArgs, SeriesWhiskers } from '../common/property-types';
|
|
11
11
|
import { SeriesTooltipComponent } from './series-item/tooltip.component';
|
|
12
12
|
import { SeriesDrilldownTemplateDirective } from './series-drilldown-template.directive';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
@@ -386,6 +386,13 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
|
|
|
386
386
|
*/
|
|
387
387
|
yField: string;
|
|
388
388
|
zIndex: number;
|
|
389
|
+
/**
|
|
390
|
+
* The configuration options of the trendline series.
|
|
391
|
+
*
|
|
392
|
+
* The `trendline` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"linearTrendline"` or `"movingAverageTrendline"`.
|
|
393
|
+
*/
|
|
394
|
+
trendline: SeriesTrendline;
|
|
395
|
+
for: string;
|
|
389
396
|
errorBars: SeriesErrorBars;
|
|
390
397
|
extremes: SeriesExtremes;
|
|
391
398
|
highlight: SeriesHighlight;
|
|
@@ -411,5 +418,5 @@ export declare class SeriesItemComponent extends CollectionItemComponent impleme
|
|
|
411
418
|
togglePointVisibility(pointIndex: number): void;
|
|
412
419
|
get seriesTooltipTemplateRef(): TemplateRef<any>;
|
|
413
420
|
static ɵfac: i0.ɵɵFactoryDeclaration<SeriesItemComponent, never>;
|
|
414
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesItemComponent, "kendo-chart-series-item", never, { "aggregate": "aggregate"; "autoFit": "autoFit"; "axis": "axis"; "border": "border"; "categoryAxis": "categoryAxis"; "categoryField": "categoryField"; "closeField": "closeField"; "color": "color"; "colorField": "colorField"; "connectors": "connectors"; "currentField": "currentField"; "dashType": "dashType"; "data": "data"; "downColor": "downColor"; "downColorField": "downColorField"; "drilldownField": "drilldownField"; "dynamicHeight": "dynamicHeight"; "dynamicSlope": "dynamicSlope"; "errorHighField": "errorHighField"; "errorLowField": "errorLowField"; "explodeField": "explodeField"; "field": "field"; "fromField": "fromField"; "gap": "gap"; "highField": "highField"; "holeSize": "holeSize"; "line": "line"; "lowField": "lowField"; "lowerField": "lowerField"; "margin": "margin"; "maxSize": "maxSize"; "mean": "mean"; "meanField": "meanField"; "median": "median"; "medianField": "medianField"; "minSize": "minSize"; "missingValues": "missingValues"; "name": "name"; "neckRatio": "neckRatio"; "negativeColor": "negativeColor"; "negativeValues": "negativeValues"; "noteTextField": "noteTextField"; "opacity": "opacity"; "openField": "openField"; "outliersField": "outliersField"; "overlay": "overlay"; "padding": "padding"; "q1Field": "q1Field"; "q3Field": "q3Field"; "segmentSpacing": "segmentSpacing"; "size": "size"; "sizeField": "sizeField"; "spacing": "spacing"; "stack": "stack"; "startAngle": "startAngle"; "style": "style"; "summaryField": "summaryField"; "target": "target"; "toField": "toField"; "type": "type"; "upperField": "upperField"; "visible": "visible"; "visibleInLegend": "visibleInLegend"; "visibleInLegendField": "visibleInLegendField"; "visual": "visual"; "width": "width"; "whiskers": "whiskers"; "xAxis": "xAxis"; "xErrorHighField": "xErrorHighField"; "xErrorLowField": "xErrorLowField"; "xField": "xField"; "yAxis": "yAxis"; "yErrorHighField": "yErrorHighField"; "yErrorLowField": "yErrorLowField"; "yField": "yField"; "zIndex": "zIndex"; "errorBars": "errorBars"; "extremes": "extremes"; "highlight": "highlight"; "labels": "labels"; "markers": "markers"; "notes": "notes"; "outliers": "outliers"; "tooltip": "tooltip"; }, {}, ["seriesTooltip", "drilldownTemplate"], never>;
|
|
421
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SeriesItemComponent, "kendo-chart-series-item", never, { "aggregate": "aggregate"; "autoFit": "autoFit"; "axis": "axis"; "border": "border"; "categoryAxis": "categoryAxis"; "categoryField": "categoryField"; "closeField": "closeField"; "color": "color"; "colorField": "colorField"; "connectors": "connectors"; "currentField": "currentField"; "dashType": "dashType"; "data": "data"; "downColor": "downColor"; "downColorField": "downColorField"; "drilldownField": "drilldownField"; "dynamicHeight": "dynamicHeight"; "dynamicSlope": "dynamicSlope"; "errorHighField": "errorHighField"; "errorLowField": "errorLowField"; "explodeField": "explodeField"; "field": "field"; "fromField": "fromField"; "gap": "gap"; "highField": "highField"; "holeSize": "holeSize"; "line": "line"; "lowField": "lowField"; "lowerField": "lowerField"; "margin": "margin"; "maxSize": "maxSize"; "mean": "mean"; "meanField": "meanField"; "median": "median"; "medianField": "medianField"; "minSize": "minSize"; "missingValues": "missingValues"; "name": "name"; "neckRatio": "neckRatio"; "negativeColor": "negativeColor"; "negativeValues": "negativeValues"; "noteTextField": "noteTextField"; "opacity": "opacity"; "openField": "openField"; "outliersField": "outliersField"; "overlay": "overlay"; "padding": "padding"; "q1Field": "q1Field"; "q3Field": "q3Field"; "segmentSpacing": "segmentSpacing"; "size": "size"; "sizeField": "sizeField"; "spacing": "spacing"; "stack": "stack"; "startAngle": "startAngle"; "style": "style"; "summaryField": "summaryField"; "target": "target"; "toField": "toField"; "type": "type"; "upperField": "upperField"; "visible": "visible"; "visibleInLegend": "visibleInLegend"; "visibleInLegendField": "visibleInLegendField"; "visual": "visual"; "width": "width"; "whiskers": "whiskers"; "xAxis": "xAxis"; "xErrorHighField": "xErrorHighField"; "xErrorLowField": "xErrorLowField"; "xField": "xField"; "yAxis": "yAxis"; "yErrorHighField": "yErrorHighField"; "yErrorLowField": "yErrorLowField"; "yField": "yField"; "zIndex": "zIndex"; "trendline": "trendline"; "for": "for"; "errorBars": "errorBars"; "extremes": "extremes"; "highlight": "highlight"; "labels": "labels"; "markers": "markers"; "notes": "notes"; "outliers": "outliers"; "tooltip": "tooltip"; }, {}, ["seriesTooltip", "drilldownTemplate"], never>;
|
|
415
422
|
}
|
package/chart.directives.d.ts
CHANGED
|
@@ -51,6 +51,8 @@ import { SeriesNotesIconComponent } from './chart/series-item/notes.icon.compone
|
|
|
51
51
|
import { SeriesNotesLabelComponent } from './chart/series-item/notes.label.component';
|
|
52
52
|
import { SeriesOutliersComponent } from './chart/series-item/outliers.component';
|
|
53
53
|
import { SeriesTooltipComponent } from './chart/series-item/tooltip.component';
|
|
54
|
+
import { SeriesTrendlineComponent } from './chart/series-item/trendline.component';
|
|
55
|
+
import { SeriesTrendlineForecastComponent } from './chart/series-item/trendline.forecast.component';
|
|
54
56
|
import { SubtitleComponent } from './chart/subtitle.component';
|
|
55
57
|
import { TitleComponent } from './chart/title.component';
|
|
56
58
|
import { TooltipComponent } from './chart/tooltip.component';
|
|
@@ -83,7 +85,7 @@ import { YAxisNotesLabelComponent } from './chart/y-axis-item/notes.label.compon
|
|
|
83
85
|
import { YAxisTitleComponent } from './chart/y-axis-item/title.component';
|
|
84
86
|
import { ZoomableComponent } from './chart/zoomable.component';
|
|
85
87
|
import { ChartBreadcrumbComponent } from './chart-breadcrumb.component';
|
|
86
|
-
export { ChartComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent };
|
|
88
|
+
export { ChartComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent };
|
|
87
89
|
/**
|
|
88
90
|
* @hidden
|
|
89
91
|
*/
|
package/chart.module.d.ts
CHANGED
|
@@ -60,41 +60,43 @@ import * as i54 from "./chart/series-item/notes.icon.component";
|
|
|
60
60
|
import * as i55 from "./chart/series-item/notes.label.component";
|
|
61
61
|
import * as i56 from "./chart/series-item/outliers.component";
|
|
62
62
|
import * as i57 from "./chart/series-item/tooltip.component";
|
|
63
|
-
import * as i58 from "./chart/
|
|
64
|
-
import * as i59 from "./chart/
|
|
65
|
-
import * as i60 from "./chart/
|
|
66
|
-
import * as i61 from "./chart/
|
|
67
|
-
import * as i62 from "./chart/
|
|
68
|
-
import * as i63 from "./chart/value-axis
|
|
69
|
-
import * as i64 from "./chart/value-axis-item.component";
|
|
70
|
-
import * as i65 from "./chart/value-axis-item/
|
|
71
|
-
import * as i66 from "./chart/value-axis-item
|
|
72
|
-
import * as i67 from "./chart/value-axis-item/
|
|
73
|
-
import * as i68 from "./chart/value-axis-item/notes.
|
|
74
|
-
import * as i69 from "./chart/value-axis-item/
|
|
75
|
-
import * as i70 from "./chart/
|
|
76
|
-
import * as i71 from "./chart/
|
|
77
|
-
import * as i72 from "./chart/x-axis
|
|
78
|
-
import * as i73 from "./chart/x-axis-item.component";
|
|
79
|
-
import * as i74 from "./chart/x-axis-item/
|
|
80
|
-
import * as i75 from "./chart/x-axis-item
|
|
81
|
-
import * as i76 from "./chart/x-axis-item/
|
|
82
|
-
import * as i77 from "./chart/x-axis-item/notes.
|
|
83
|
-
import * as i78 from "./chart/x-axis-item/
|
|
84
|
-
import * as i79 from "./chart/
|
|
85
|
-
import * as i80 from "./chart/
|
|
86
|
-
import * as i81 from "./chart/y-axis
|
|
87
|
-
import * as i82 from "./chart/y-axis-item.component";
|
|
88
|
-
import * as i83 from "./chart/y-axis-item/
|
|
89
|
-
import * as i84 from "./chart/y-axis-item
|
|
90
|
-
import * as i85 from "./chart/y-axis-item/
|
|
91
|
-
import * as i86 from "./chart/y-axis-item/notes.
|
|
92
|
-
import * as i87 from "./chart/y-axis-item/
|
|
93
|
-
import * as i88 from "./chart/
|
|
94
|
-
import * as i89 from "
|
|
95
|
-
import * as i90 from "
|
|
96
|
-
import * as i91 from "@
|
|
97
|
-
import * as i92 from "@progress/kendo-angular-
|
|
63
|
+
import * as i58 from "./chart/series-item/trendline.component";
|
|
64
|
+
import * as i59 from "./chart/series-item/trendline.forecast.component";
|
|
65
|
+
import * as i60 from "./chart/subtitle.component";
|
|
66
|
+
import * as i61 from "./chart/title.component";
|
|
67
|
+
import * as i62 from "./chart/tooltip.component";
|
|
68
|
+
import * as i63 from "./chart/value-axis.component";
|
|
69
|
+
import * as i64 from "./chart/value-axis-item/crosshair.component";
|
|
70
|
+
import * as i65 from "./chart/value-axis-item/crosshair.tooltip.component";
|
|
71
|
+
import * as i66 from "./chart/value-axis-item.component";
|
|
72
|
+
import * as i67 from "./chart/value-axis-item/labels.component";
|
|
73
|
+
import * as i68 from "./chart/value-axis-item/notes.component";
|
|
74
|
+
import * as i69 from "./chart/value-axis-item/notes.icon.component";
|
|
75
|
+
import * as i70 from "./chart/value-axis-item/notes.label.component";
|
|
76
|
+
import * as i71 from "./chart/value-axis-item/title.component";
|
|
77
|
+
import * as i72 from "./chart/x-axis.component";
|
|
78
|
+
import * as i73 from "./chart/x-axis-item/crosshair.component";
|
|
79
|
+
import * as i74 from "./chart/x-axis-item/crosshair.tooltip.component";
|
|
80
|
+
import * as i75 from "./chart/x-axis-item.component";
|
|
81
|
+
import * as i76 from "./chart/x-axis-item/labels.component";
|
|
82
|
+
import * as i77 from "./chart/x-axis-item/notes.component";
|
|
83
|
+
import * as i78 from "./chart/x-axis-item/notes.icon.component";
|
|
84
|
+
import * as i79 from "./chart/x-axis-item/notes.label.component";
|
|
85
|
+
import * as i80 from "./chart/x-axis-item/title.component";
|
|
86
|
+
import * as i81 from "./chart/y-axis.component";
|
|
87
|
+
import * as i82 from "./chart/y-axis-item/crosshair.component";
|
|
88
|
+
import * as i83 from "./chart/y-axis-item/crosshair.tooltip.component";
|
|
89
|
+
import * as i84 from "./chart/y-axis-item.component";
|
|
90
|
+
import * as i85 from "./chart/y-axis-item/labels.component";
|
|
91
|
+
import * as i86 from "./chart/y-axis-item/notes.component";
|
|
92
|
+
import * as i87 from "./chart/y-axis-item/notes.icon.component";
|
|
93
|
+
import * as i88 from "./chart/y-axis-item/notes.label.component";
|
|
94
|
+
import * as i89 from "./chart/y-axis-item/title.component";
|
|
95
|
+
import * as i90 from "./chart/zoomable.component";
|
|
96
|
+
import * as i91 from "@angular/common";
|
|
97
|
+
import * as i92 from "@progress/kendo-angular-navigation";
|
|
98
|
+
import * as i93 from "@progress/kendo-angular-popup";
|
|
99
|
+
import * as i94 from "@progress/kendo-angular-common";
|
|
98
100
|
/**
|
|
99
101
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.
|
|
100
102
|
*
|
|
@@ -119,6 +121,6 @@ import * as i92 from "@progress/kendo-angular-common";
|
|
|
119
121
|
*/
|
|
120
122
|
export declare class ChartModule {
|
|
121
123
|
static ɵfac: i0.ɵɵFactoryDeclaration<ChartModule, never>;
|
|
122
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ChartModule, [typeof i1.ChartComponent, typeof i2.TooltipPopupComponent, typeof i3.SeriesTooltipTemplateDirective, typeof i4.SharedTooltipTemplateDirective, typeof i5.CrosshairTooltipsContainerComponent, typeof i6.CrosshairTooltipComponent, typeof i7.DonutCenterTemplateDirective, typeof i8.AxisDefaultsComponent, typeof i9.AxisDefaultsCrosshairComponent, typeof i10.AxisDefaultsCrosshairTooltipComponent, typeof i11.AxisDefaultsLabelsComponent, typeof i12.AxisDefaultsTitleComponent, typeof i13.CategoryAxisComponent, typeof i14.CategoryAxisCrosshairComponent, typeof i15.CategoryAxisCrosshairTooltipComponent, typeof i16.CategoryAxisItemComponent, typeof i17.CategoryAxisLabelsComponent, typeof i18.CategoryAxisRangeLabelsComponent, typeof i19.CategoryAxisNotesComponent, typeof i20.CategoryAxisNotesIconComponent, typeof i21.CategoryAxisNotesLabelComponent, typeof i22.CategoryAxisSelectComponent, typeof i23.CategoryAxisTitleComponent, typeof i24.ChartAreaComponent, typeof i25.ChartBreadcrumbComponent, typeof i26.LegendComponent, typeof i27.LegendInactiveItemsComponent, typeof i28.LegendItemComponent, typeof i29.PaneComponent, typeof i30.PaneDefaultsComponent, typeof i31.PaneDefaultsTitleComponent, typeof i32.PanesComponent, typeof i33.PanesTitleComponent, typeof i34.PlotAreaComponent, typeof i35.SeriesComponent, typeof i36.SeriesDefaultsComponent, typeof i37.SeriesDefaultsLabelsComponent, typeof i38.SeriesDefaultsLabelsFromComponent, typeof i39.SeriesDefaultsLabelsToComponent, typeof i40.SeriesDefaultsNotesComponent, typeof i41.SeriesDefaultsNotesIconComponent, typeof i42.SeriesDefaultsNotesLabelComponent, typeof i43.SeriesDefaultsTooltipComponent, typeof i44.SeriesDrilldownTemplateDirective, typeof i45.SeriesErrorBarsComponent, typeof i46.SeriesExtremesComponent, typeof i47.SeriesHighlightComponent, typeof i48.SeriesItemComponent, typeof i49.SeriesLabelsComponent, typeof i50.SeriesLabelsFromComponent, typeof i51.SeriesLabelsToComponent, typeof i52.SeriesMarkersComponent, typeof i53.SeriesNotesComponent, typeof i54.SeriesNotesIconComponent, typeof i55.SeriesNotesLabelComponent, typeof i56.SeriesOutliersComponent, typeof i57.SeriesTooltipComponent, typeof i58.
|
|
124
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ChartModule, [typeof i1.ChartComponent, typeof i2.TooltipPopupComponent, typeof i3.SeriesTooltipTemplateDirective, typeof i4.SharedTooltipTemplateDirective, typeof i5.CrosshairTooltipsContainerComponent, typeof i6.CrosshairTooltipComponent, typeof i7.DonutCenterTemplateDirective, typeof i8.AxisDefaultsComponent, typeof i9.AxisDefaultsCrosshairComponent, typeof i10.AxisDefaultsCrosshairTooltipComponent, typeof i11.AxisDefaultsLabelsComponent, typeof i12.AxisDefaultsTitleComponent, typeof i13.CategoryAxisComponent, typeof i14.CategoryAxisCrosshairComponent, typeof i15.CategoryAxisCrosshairTooltipComponent, typeof i16.CategoryAxisItemComponent, typeof i17.CategoryAxisLabelsComponent, typeof i18.CategoryAxisRangeLabelsComponent, typeof i19.CategoryAxisNotesComponent, typeof i20.CategoryAxisNotesIconComponent, typeof i21.CategoryAxisNotesLabelComponent, typeof i22.CategoryAxisSelectComponent, typeof i23.CategoryAxisTitleComponent, typeof i24.ChartAreaComponent, typeof i25.ChartBreadcrumbComponent, typeof i26.LegendComponent, typeof i27.LegendInactiveItemsComponent, typeof i28.LegendItemComponent, typeof i29.PaneComponent, typeof i30.PaneDefaultsComponent, typeof i31.PaneDefaultsTitleComponent, typeof i32.PanesComponent, typeof i33.PanesTitleComponent, typeof i34.PlotAreaComponent, typeof i35.SeriesComponent, typeof i36.SeriesDefaultsComponent, typeof i37.SeriesDefaultsLabelsComponent, typeof i38.SeriesDefaultsLabelsFromComponent, typeof i39.SeriesDefaultsLabelsToComponent, typeof i40.SeriesDefaultsNotesComponent, typeof i41.SeriesDefaultsNotesIconComponent, typeof i42.SeriesDefaultsNotesLabelComponent, typeof i43.SeriesDefaultsTooltipComponent, typeof i44.SeriesDrilldownTemplateDirective, typeof i45.SeriesErrorBarsComponent, typeof i46.SeriesExtremesComponent, typeof i47.SeriesHighlightComponent, typeof i48.SeriesItemComponent, typeof i49.SeriesLabelsComponent, typeof i50.SeriesLabelsFromComponent, typeof i51.SeriesLabelsToComponent, typeof i52.SeriesMarkersComponent, typeof i53.SeriesNotesComponent, typeof i54.SeriesNotesIconComponent, typeof i55.SeriesNotesLabelComponent, typeof i56.SeriesOutliersComponent, typeof i57.SeriesTooltipComponent, typeof i58.SeriesTrendlineComponent, typeof i59.SeriesTrendlineForecastComponent, typeof i60.SubtitleComponent, typeof i61.TitleComponent, typeof i62.TooltipComponent, typeof i63.ValueAxisComponent, typeof i64.ValueAxisCrosshairComponent, typeof i65.ValueAxisCrosshairTooltipComponent, typeof i66.ValueAxisItemComponent, typeof i67.ValueAxisLabelsComponent, typeof i68.ValueAxisNotesComponent, typeof i69.ValueAxisNotesIconComponent, typeof i70.ValueAxisNotesLabelComponent, typeof i71.ValueAxisTitleComponent, typeof i72.XAxisComponent, typeof i73.XAxisCrosshairComponent, typeof i74.XAxisCrosshairTooltipComponent, typeof i75.XAxisItemComponent, typeof i76.XAxisLabelsComponent, typeof i77.XAxisNotesComponent, typeof i78.XAxisNotesIconComponent, typeof i79.XAxisNotesLabelComponent, typeof i80.XAxisTitleComponent, typeof i81.YAxisComponent, typeof i82.YAxisCrosshairComponent, typeof i83.YAxisCrosshairTooltipComponent, typeof i84.YAxisItemComponent, typeof i85.YAxisLabelsComponent, typeof i86.YAxisNotesComponent, typeof i87.YAxisNotesIconComponent, typeof i88.YAxisNotesLabelComponent, typeof i89.YAxisTitleComponent, typeof i90.ZoomableComponent], [typeof i91.CommonModule, typeof i92.BreadCrumbModule, typeof i93.PopupModule, typeof i94.ResizeSensorModule, typeof i94.WatermarkModule], [typeof i1.ChartComponent, typeof i2.TooltipPopupComponent, typeof i3.SeriesTooltipTemplateDirective, typeof i4.SharedTooltipTemplateDirective, typeof i5.CrosshairTooltipsContainerComponent, typeof i6.CrosshairTooltipComponent, typeof i7.DonutCenterTemplateDirective, typeof i8.AxisDefaultsComponent, typeof i9.AxisDefaultsCrosshairComponent, typeof i10.AxisDefaultsCrosshairTooltipComponent, typeof i11.AxisDefaultsLabelsComponent, typeof i12.AxisDefaultsTitleComponent, typeof i13.CategoryAxisComponent, typeof i14.CategoryAxisCrosshairComponent, typeof i15.CategoryAxisCrosshairTooltipComponent, typeof i16.CategoryAxisItemComponent, typeof i17.CategoryAxisLabelsComponent, typeof i18.CategoryAxisRangeLabelsComponent, typeof i19.CategoryAxisNotesComponent, typeof i20.CategoryAxisNotesIconComponent, typeof i21.CategoryAxisNotesLabelComponent, typeof i22.CategoryAxisSelectComponent, typeof i23.CategoryAxisTitleComponent, typeof i24.ChartAreaComponent, typeof i25.ChartBreadcrumbComponent, typeof i26.LegendComponent, typeof i27.LegendInactiveItemsComponent, typeof i28.LegendItemComponent, typeof i29.PaneComponent, typeof i30.PaneDefaultsComponent, typeof i31.PaneDefaultsTitleComponent, typeof i32.PanesComponent, typeof i33.PanesTitleComponent, typeof i34.PlotAreaComponent, typeof i35.SeriesComponent, typeof i36.SeriesDefaultsComponent, typeof i37.SeriesDefaultsLabelsComponent, typeof i38.SeriesDefaultsLabelsFromComponent, typeof i39.SeriesDefaultsLabelsToComponent, typeof i40.SeriesDefaultsNotesComponent, typeof i41.SeriesDefaultsNotesIconComponent, typeof i42.SeriesDefaultsNotesLabelComponent, typeof i43.SeriesDefaultsTooltipComponent, typeof i44.SeriesDrilldownTemplateDirective, typeof i45.SeriesErrorBarsComponent, typeof i46.SeriesExtremesComponent, typeof i47.SeriesHighlightComponent, typeof i48.SeriesItemComponent, typeof i49.SeriesLabelsComponent, typeof i50.SeriesLabelsFromComponent, typeof i51.SeriesLabelsToComponent, typeof i52.SeriesMarkersComponent, typeof i53.SeriesNotesComponent, typeof i54.SeriesNotesIconComponent, typeof i55.SeriesNotesLabelComponent, typeof i56.SeriesOutliersComponent, typeof i57.SeriesTooltipComponent, typeof i58.SeriesTrendlineComponent, typeof i59.SeriesTrendlineForecastComponent, typeof i60.SubtitleComponent, typeof i61.TitleComponent, typeof i62.TooltipComponent, typeof i63.ValueAxisComponent, typeof i64.ValueAxisCrosshairComponent, typeof i65.ValueAxisCrosshairTooltipComponent, typeof i66.ValueAxisItemComponent, typeof i67.ValueAxisLabelsComponent, typeof i68.ValueAxisNotesComponent, typeof i69.ValueAxisNotesIconComponent, typeof i70.ValueAxisNotesLabelComponent, typeof i71.ValueAxisTitleComponent, typeof i72.XAxisComponent, typeof i73.XAxisCrosshairComponent, typeof i74.XAxisCrosshairTooltipComponent, typeof i75.XAxisItemComponent, typeof i76.XAxisLabelsComponent, typeof i77.XAxisNotesComponent, typeof i78.XAxisNotesIconComponent, typeof i79.XAxisNotesLabelComponent, typeof i80.XAxisTitleComponent, typeof i81.YAxisComponent, typeof i82.YAxisCrosshairComponent, typeof i83.YAxisCrosshairTooltipComponent, typeof i84.YAxisItemComponent, typeof i85.YAxisLabelsComponent, typeof i86.YAxisNotesComponent, typeof i87.YAxisNotesIconComponent, typeof i88.YAxisNotesLabelComponent, typeof i89.YAxisTitleComponent, typeof i90.ZoomableComponent]>;
|
|
123
125
|
static ɵinj: i0.ɵɵInjectorDeclaration<ChartModule>;
|
|
124
126
|
}
|
|
@@ -44,6 +44,7 @@ export { SeriesMedian } from '../field-types/series-median.interface';
|
|
|
44
44
|
export { SeriesWhiskers } from '../field-types/series-whiskers.interface';
|
|
45
45
|
export { SeriesStack } from '../field-types/series-stack.interface';
|
|
46
46
|
export { SeriesType } from '../field-types/series-type';
|
|
47
|
+
export { TrendlineForecast } from '../field-types/trendline-forecast.interface';
|
|
47
48
|
export { WeekStartDay } from '../field-types/week-start-day.enum';
|
|
48
49
|
export { AxisLabelContentArgs } from '../argument-types/axis-label-content-args.interface';
|
|
49
50
|
export { AxisLabelVisualArgs } from '../argument-types/axis-label-visual-args.interface';
|
|
@@ -110,6 +111,7 @@ export { SeriesNotesIcon } from '../option-types/series-item/notes.icon.interfac
|
|
|
110
111
|
export { SeriesNotesLabel } from '../option-types/series-item/notes.label.interface';
|
|
111
112
|
export { SeriesOutliers } from '../option-types/series-item/outliers.interface';
|
|
112
113
|
export { SeriesTooltip } from '../option-types/series-item/tooltip.interface';
|
|
114
|
+
export { SeriesTrendline } from '../option-types/series-item/trendline.interface';
|
|
113
115
|
export { Series } from '../option-types/series-item.interface';
|
|
114
116
|
export { Subtitle } from '../option-types/subtitle.interface';
|
|
115
117
|
export { Title } from '../option-types/title.interface';
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
6
|
+
import { ConfigurationService } from '../../common/configuration.service';
|
|
7
|
+
import { SettingsComponent } from '../../common/settings.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "../../common/configuration.service";
|
|
10
|
+
/**
|
|
11
|
+
* The configuration options of the Chart trendline series
|
|
12
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
13
|
+
*/
|
|
14
|
+
export class SeriesTrendlineComponent extends SettingsComponent {
|
|
15
|
+
constructor(configurationService) {
|
|
16
|
+
super('trendline', configurationService);
|
|
17
|
+
this.configurationService = configurationService;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
SeriesTrendlineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
21
|
+
SeriesTrendlineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesTrendlineComponent, selector: "kendo-chart-series-item-trendline", inputs: { period: "period", forecast: "forecast" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineComponent, decorators: [{
|
|
23
|
+
type: Component,
|
|
24
|
+
args: [{
|
|
25
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
26
|
+
selector: 'kendo-chart-series-item-trendline',
|
|
27
|
+
template: ''
|
|
28
|
+
}]
|
|
29
|
+
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; }, propDecorators: { period: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}], forecast: [{
|
|
32
|
+
type: Input
|
|
33
|
+
}] } });
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { ChangeDetectionStrategy, Component, Input } from '@angular/core';
|
|
6
|
+
import { ConfigurationService } from '../../common/configuration.service';
|
|
7
|
+
import { SettingsComponent } from '../../common/settings.component';
|
|
8
|
+
import * as i0 from "@angular/core";
|
|
9
|
+
import * as i1 from "../../common/configuration.service";
|
|
10
|
+
/**
|
|
11
|
+
* The configuration options of the Chart trendline forecast
|
|
12
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
13
|
+
*/
|
|
14
|
+
export class SeriesTrendlineForecastComponent extends SettingsComponent {
|
|
15
|
+
constructor(configurationService) {
|
|
16
|
+
super('forecast', configurationService);
|
|
17
|
+
this.configurationService = configurationService;
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
SeriesTrendlineForecastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineForecastComponent, deps: [{ token: i1.ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
21
|
+
SeriesTrendlineForecastComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesTrendlineForecastComponent, selector: "kendo-chart-series-item-trendline-forecast", inputs: { before: "before", after: "after", forecast: "forecast" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
22
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineForecastComponent, decorators: [{
|
|
23
|
+
type: Component,
|
|
24
|
+
args: [{
|
|
25
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
26
|
+
selector: 'kendo-chart-series-item-trendline-forecast',
|
|
27
|
+
template: ''
|
|
28
|
+
}]
|
|
29
|
+
}], ctorParameters: function () { return [{ type: i1.ConfigurationService }]; }, propDecorators: { before: [{
|
|
30
|
+
type: Input
|
|
31
|
+
}], after: [{
|
|
32
|
+
type: Input
|
|
33
|
+
}], forecast: [{
|
|
34
|
+
type: Input
|
|
35
|
+
}] } });
|
|
@@ -56,7 +56,7 @@ export class SeriesItemComponent extends CollectionItemComponent {
|
|
|
56
56
|
}
|
|
57
57
|
}
|
|
58
58
|
SeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, deps: [{ token: i1.ConfigurationService }, { token: i2.CollectionService }], target: i0.ɵɵFactoryTarget.Component });
|
|
59
|
-
SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", drilldownField: "drilldownField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: "drilldownTemplate", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
59
|
+
SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", drilldownField: "drilldownField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", trendline: "trendline", for: "for", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: "drilldownTemplate", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
60
60
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, decorators: [{
|
|
61
61
|
type: Component,
|
|
62
62
|
args: [{
|
|
@@ -217,6 +217,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
217
217
|
type: Input
|
|
218
218
|
}], zIndex: [{
|
|
219
219
|
type: Input
|
|
220
|
+
}], trendline: [{
|
|
221
|
+
type: Input
|
|
222
|
+
}], for: [{
|
|
223
|
+
type: Input
|
|
220
224
|
}], errorBars: [{
|
|
221
225
|
type: Input
|
|
222
226
|
}], extremes: [{
|
|
@@ -490,11 +490,11 @@ export class ChartComponent {
|
|
|
490
490
|
if (!series) {
|
|
491
491
|
return;
|
|
492
492
|
}
|
|
493
|
-
if (e.pointIndex
|
|
494
|
-
series.
|
|
493
|
+
if (e.pointIndex !== undefined) {
|
|
494
|
+
series.togglePointVisibility(e.pointIndex);
|
|
495
495
|
}
|
|
496
496
|
else {
|
|
497
|
-
series.
|
|
497
|
+
series.toggleVisibility();
|
|
498
498
|
}
|
|
499
499
|
this.suppressTransitions = true;
|
|
500
500
|
}
|
|
@@ -57,6 +57,8 @@ import { SeriesNotesIconComponent } from './chart/series-item/notes.icon.compone
|
|
|
57
57
|
import { SeriesNotesLabelComponent } from './chart/series-item/notes.label.component';
|
|
58
58
|
import { SeriesOutliersComponent } from './chart/series-item/outliers.component';
|
|
59
59
|
import { SeriesTooltipComponent } from './chart/series-item/tooltip.component';
|
|
60
|
+
import { SeriesTrendlineComponent } from './chart/series-item/trendline.component';
|
|
61
|
+
import { SeriesTrendlineForecastComponent } from './chart/series-item/trendline.forecast.component';
|
|
60
62
|
import { SubtitleComponent } from './chart/subtitle.component';
|
|
61
63
|
import { TitleComponent } from './chart/title.component';
|
|
62
64
|
import { TooltipComponent } from './chart/tooltip.component';
|
|
@@ -91,7 +93,7 @@ import { ZoomableComponent } from './chart/zoomable.component';
|
|
|
91
93
|
import { SeriesDrilldownTemplateDirective } from './chart/series-drilldown-template.directive';
|
|
92
94
|
import { ChartBreadcrumbComponent } from './chart-breadcrumb.component';
|
|
93
95
|
// Re-exports
|
|
94
|
-
export { ChartComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent };
|
|
96
|
+
export { ChartComponent, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent };
|
|
95
97
|
/**
|
|
96
98
|
* @hidden
|
|
97
99
|
*/
|
|
@@ -153,6 +155,8 @@ export const CHART_DIRECTIVES = [
|
|
|
153
155
|
SeriesNotesLabelComponent,
|
|
154
156
|
SeriesOutliersComponent,
|
|
155
157
|
SeriesTooltipComponent,
|
|
158
|
+
SeriesTrendlineComponent,
|
|
159
|
+
SeriesTrendlineForecastComponent,
|
|
156
160
|
SubtitleComponent,
|
|
157
161
|
TitleComponent,
|
|
158
162
|
TooltipComponent,
|
package/esm2020/chart.module.mjs
CHANGED
|
@@ -67,37 +67,39 @@ import * as i54 from "./chart/series-item/notes.icon.component";
|
|
|
67
67
|
import * as i55 from "./chart/series-item/notes.label.component";
|
|
68
68
|
import * as i56 from "./chart/series-item/outliers.component";
|
|
69
69
|
import * as i57 from "./chart/series-item/tooltip.component";
|
|
70
|
-
import * as i58 from "./chart/
|
|
71
|
-
import * as i59 from "./chart/
|
|
72
|
-
import * as i60 from "./chart/
|
|
73
|
-
import * as i61 from "./chart/
|
|
74
|
-
import * as i62 from "./chart/
|
|
75
|
-
import * as i63 from "./chart/value-axis
|
|
76
|
-
import * as i64 from "./chart/value-axis-item.component";
|
|
77
|
-
import * as i65 from "./chart/value-axis-item/
|
|
78
|
-
import * as i66 from "./chart/value-axis-item
|
|
79
|
-
import * as i67 from "./chart/value-axis-item/
|
|
80
|
-
import * as i68 from "./chart/value-axis-item/notes.
|
|
81
|
-
import * as i69 from "./chart/value-axis-item/
|
|
82
|
-
import * as i70 from "./chart/
|
|
83
|
-
import * as i71 from "./chart/
|
|
84
|
-
import * as i72 from "./chart/x-axis
|
|
85
|
-
import * as i73 from "./chart/x-axis-item.component";
|
|
86
|
-
import * as i74 from "./chart/x-axis-item/
|
|
87
|
-
import * as i75 from "./chart/x-axis-item
|
|
88
|
-
import * as i76 from "./chart/x-axis-item/
|
|
89
|
-
import * as i77 from "./chart/x-axis-item/notes.
|
|
90
|
-
import * as i78 from "./chart/x-axis-item/
|
|
91
|
-
import * as i79 from "./chart/
|
|
92
|
-
import * as i80 from "./chart/
|
|
93
|
-
import * as i81 from "./chart/y-axis
|
|
94
|
-
import * as i82 from "./chart/y-axis-item.component";
|
|
95
|
-
import * as i83 from "./chart/y-axis-item/
|
|
96
|
-
import * as i84 from "./chart/y-axis-item
|
|
97
|
-
import * as i85 from "./chart/y-axis-item/
|
|
98
|
-
import * as i86 from "./chart/y-axis-item/notes.
|
|
99
|
-
import * as i87 from "./chart/y-axis-item/
|
|
100
|
-
import * as i88 from "./chart/
|
|
70
|
+
import * as i58 from "./chart/series-item/trendline.component";
|
|
71
|
+
import * as i59 from "./chart/series-item/trendline.forecast.component";
|
|
72
|
+
import * as i60 from "./chart/subtitle.component";
|
|
73
|
+
import * as i61 from "./chart/title.component";
|
|
74
|
+
import * as i62 from "./chart/tooltip.component";
|
|
75
|
+
import * as i63 from "./chart/value-axis.component";
|
|
76
|
+
import * as i64 from "./chart/value-axis-item/crosshair.component";
|
|
77
|
+
import * as i65 from "./chart/value-axis-item/crosshair.tooltip.component";
|
|
78
|
+
import * as i66 from "./chart/value-axis-item.component";
|
|
79
|
+
import * as i67 from "./chart/value-axis-item/labels.component";
|
|
80
|
+
import * as i68 from "./chart/value-axis-item/notes.component";
|
|
81
|
+
import * as i69 from "./chart/value-axis-item/notes.icon.component";
|
|
82
|
+
import * as i70 from "./chart/value-axis-item/notes.label.component";
|
|
83
|
+
import * as i71 from "./chart/value-axis-item/title.component";
|
|
84
|
+
import * as i72 from "./chart/x-axis.component";
|
|
85
|
+
import * as i73 from "./chart/x-axis-item/crosshair.component";
|
|
86
|
+
import * as i74 from "./chart/x-axis-item/crosshair.tooltip.component";
|
|
87
|
+
import * as i75 from "./chart/x-axis-item.component";
|
|
88
|
+
import * as i76 from "./chart/x-axis-item/labels.component";
|
|
89
|
+
import * as i77 from "./chart/x-axis-item/notes.component";
|
|
90
|
+
import * as i78 from "./chart/x-axis-item/notes.icon.component";
|
|
91
|
+
import * as i79 from "./chart/x-axis-item/notes.label.component";
|
|
92
|
+
import * as i80 from "./chart/x-axis-item/title.component";
|
|
93
|
+
import * as i81 from "./chart/y-axis.component";
|
|
94
|
+
import * as i82 from "./chart/y-axis-item/crosshair.component";
|
|
95
|
+
import * as i83 from "./chart/y-axis-item/crosshair.tooltip.component";
|
|
96
|
+
import * as i84 from "./chart/y-axis-item.component";
|
|
97
|
+
import * as i85 from "./chart/y-axis-item/labels.component";
|
|
98
|
+
import * as i86 from "./chart/y-axis-item/notes.component";
|
|
99
|
+
import * as i87 from "./chart/y-axis-item/notes.icon.component";
|
|
100
|
+
import * as i88 from "./chart/y-axis-item/notes.label.component";
|
|
101
|
+
import * as i89 from "./chart/y-axis-item/title.component";
|
|
102
|
+
import * as i90 from "./chart/zoomable.component";
|
|
101
103
|
/**
|
|
102
104
|
* A [module](link:site.data.urls.angular['ngmoduleapi']) that includes the Chart component and directives.
|
|
103
105
|
*
|
|
@@ -123,7 +125,7 @@ import * as i88 from "./chart/zoomable.component";
|
|
|
123
125
|
export class ChartModule {
|
|
124
126
|
}
|
|
125
127
|
ChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
126
|
-
ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [i1.ChartComponent, i2.TooltipPopupComponent, i3.SeriesTooltipTemplateDirective, i4.SharedTooltipTemplateDirective, i5.CrosshairTooltipsContainerComponent, i6.CrosshairTooltipComponent, i7.DonutCenterTemplateDirective, i8.AxisDefaultsComponent, i9.AxisDefaultsCrosshairComponent, i10.AxisDefaultsCrosshairTooltipComponent, i11.AxisDefaultsLabelsComponent, i12.AxisDefaultsTitleComponent, i13.CategoryAxisComponent, i14.CategoryAxisCrosshairComponent, i15.CategoryAxisCrosshairTooltipComponent, i16.CategoryAxisItemComponent, i17.CategoryAxisLabelsComponent, i18.CategoryAxisRangeLabelsComponent, i19.CategoryAxisNotesComponent, i20.CategoryAxisNotesIconComponent, i21.CategoryAxisNotesLabelComponent, i22.CategoryAxisSelectComponent, i23.CategoryAxisTitleComponent, i24.ChartAreaComponent, i25.ChartBreadcrumbComponent, i26.LegendComponent, i27.LegendInactiveItemsComponent, i28.LegendItemComponent, i29.PaneComponent, i30.PaneDefaultsComponent, i31.PaneDefaultsTitleComponent, i32.PanesComponent, i33.PanesTitleComponent, i34.PlotAreaComponent, i35.SeriesComponent, i36.SeriesDefaultsComponent, i37.SeriesDefaultsLabelsComponent, i38.SeriesDefaultsLabelsFromComponent, i39.SeriesDefaultsLabelsToComponent, i40.SeriesDefaultsNotesComponent, i41.SeriesDefaultsNotesIconComponent, i42.SeriesDefaultsNotesLabelComponent, i43.SeriesDefaultsTooltipComponent, i44.SeriesDrilldownTemplateDirective, i45.SeriesErrorBarsComponent, i46.SeriesExtremesComponent, i47.SeriesHighlightComponent, i48.SeriesItemComponent, i49.SeriesLabelsComponent, i50.SeriesLabelsFromComponent, i51.SeriesLabelsToComponent, i52.SeriesMarkersComponent, i53.SeriesNotesComponent, i54.SeriesNotesIconComponent, i55.SeriesNotesLabelComponent, i56.SeriesOutliersComponent, i57.SeriesTooltipComponent, i58.
|
|
128
|
+
ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [i1.ChartComponent, i2.TooltipPopupComponent, i3.SeriesTooltipTemplateDirective, i4.SharedTooltipTemplateDirective, i5.CrosshairTooltipsContainerComponent, i6.CrosshairTooltipComponent, i7.DonutCenterTemplateDirective, i8.AxisDefaultsComponent, i9.AxisDefaultsCrosshairComponent, i10.AxisDefaultsCrosshairTooltipComponent, i11.AxisDefaultsLabelsComponent, i12.AxisDefaultsTitleComponent, i13.CategoryAxisComponent, i14.CategoryAxisCrosshairComponent, i15.CategoryAxisCrosshairTooltipComponent, i16.CategoryAxisItemComponent, i17.CategoryAxisLabelsComponent, i18.CategoryAxisRangeLabelsComponent, i19.CategoryAxisNotesComponent, i20.CategoryAxisNotesIconComponent, i21.CategoryAxisNotesLabelComponent, i22.CategoryAxisSelectComponent, i23.CategoryAxisTitleComponent, i24.ChartAreaComponent, i25.ChartBreadcrumbComponent, i26.LegendComponent, i27.LegendInactiveItemsComponent, i28.LegendItemComponent, i29.PaneComponent, i30.PaneDefaultsComponent, i31.PaneDefaultsTitleComponent, i32.PanesComponent, i33.PanesTitleComponent, i34.PlotAreaComponent, i35.SeriesComponent, i36.SeriesDefaultsComponent, i37.SeriesDefaultsLabelsComponent, i38.SeriesDefaultsLabelsFromComponent, i39.SeriesDefaultsLabelsToComponent, i40.SeriesDefaultsNotesComponent, i41.SeriesDefaultsNotesIconComponent, i42.SeriesDefaultsNotesLabelComponent, i43.SeriesDefaultsTooltipComponent, i44.SeriesDrilldownTemplateDirective, i45.SeriesErrorBarsComponent, i46.SeriesExtremesComponent, i47.SeriesHighlightComponent, i48.SeriesItemComponent, i49.SeriesLabelsComponent, i50.SeriesLabelsFromComponent, i51.SeriesLabelsToComponent, i52.SeriesMarkersComponent, i53.SeriesNotesComponent, i54.SeriesNotesIconComponent, i55.SeriesNotesLabelComponent, i56.SeriesOutliersComponent, i57.SeriesTooltipComponent, i58.SeriesTrendlineComponent, i59.SeriesTrendlineForecastComponent, i60.SubtitleComponent, i61.TitleComponent, i62.TooltipComponent, i63.ValueAxisComponent, i64.ValueAxisCrosshairComponent, i65.ValueAxisCrosshairTooltipComponent, i66.ValueAxisItemComponent, i67.ValueAxisLabelsComponent, i68.ValueAxisNotesComponent, i69.ValueAxisNotesIconComponent, i70.ValueAxisNotesLabelComponent, i71.ValueAxisTitleComponent, i72.XAxisComponent, i73.XAxisCrosshairComponent, i74.XAxisCrosshairTooltipComponent, i75.XAxisItemComponent, i76.XAxisLabelsComponent, i77.XAxisNotesComponent, i78.XAxisNotesIconComponent, i79.XAxisNotesLabelComponent, i80.XAxisTitleComponent, i81.YAxisComponent, i82.YAxisCrosshairComponent, i83.YAxisCrosshairTooltipComponent, i84.YAxisItemComponent, i85.YAxisLabelsComponent, i86.YAxisNotesComponent, i87.YAxisNotesIconComponent, i88.YAxisNotesLabelComponent, i89.YAxisTitleComponent, i90.ZoomableComponent], imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule], exports: [i1.ChartComponent, i2.TooltipPopupComponent, i3.SeriesTooltipTemplateDirective, i4.SharedTooltipTemplateDirective, i5.CrosshairTooltipsContainerComponent, i6.CrosshairTooltipComponent, i7.DonutCenterTemplateDirective, i8.AxisDefaultsComponent, i9.AxisDefaultsCrosshairComponent, i10.AxisDefaultsCrosshairTooltipComponent, i11.AxisDefaultsLabelsComponent, i12.AxisDefaultsTitleComponent, i13.CategoryAxisComponent, i14.CategoryAxisCrosshairComponent, i15.CategoryAxisCrosshairTooltipComponent, i16.CategoryAxisItemComponent, i17.CategoryAxisLabelsComponent, i18.CategoryAxisRangeLabelsComponent, i19.CategoryAxisNotesComponent, i20.CategoryAxisNotesIconComponent, i21.CategoryAxisNotesLabelComponent, i22.CategoryAxisSelectComponent, i23.CategoryAxisTitleComponent, i24.ChartAreaComponent, i25.ChartBreadcrumbComponent, i26.LegendComponent, i27.LegendInactiveItemsComponent, i28.LegendItemComponent, i29.PaneComponent, i30.PaneDefaultsComponent, i31.PaneDefaultsTitleComponent, i32.PanesComponent, i33.PanesTitleComponent, i34.PlotAreaComponent, i35.SeriesComponent, i36.SeriesDefaultsComponent, i37.SeriesDefaultsLabelsComponent, i38.SeriesDefaultsLabelsFromComponent, i39.SeriesDefaultsLabelsToComponent, i40.SeriesDefaultsNotesComponent, i41.SeriesDefaultsNotesIconComponent, i42.SeriesDefaultsNotesLabelComponent, i43.SeriesDefaultsTooltipComponent, i44.SeriesDrilldownTemplateDirective, i45.SeriesErrorBarsComponent, i46.SeriesExtremesComponent, i47.SeriesHighlightComponent, i48.SeriesItemComponent, i49.SeriesLabelsComponent, i50.SeriesLabelsFromComponent, i51.SeriesLabelsToComponent, i52.SeriesMarkersComponent, i53.SeriesNotesComponent, i54.SeriesNotesIconComponent, i55.SeriesNotesLabelComponent, i56.SeriesOutliersComponent, i57.SeriesTooltipComponent, i58.SeriesTrendlineComponent, i59.SeriesTrendlineForecastComponent, i60.SubtitleComponent, i61.TitleComponent, i62.TooltipComponent, i63.ValueAxisComponent, i64.ValueAxisCrosshairComponent, i65.ValueAxisCrosshairTooltipComponent, i66.ValueAxisItemComponent, i67.ValueAxisLabelsComponent, i68.ValueAxisNotesComponent, i69.ValueAxisNotesIconComponent, i70.ValueAxisNotesLabelComponent, i71.ValueAxisTitleComponent, i72.XAxisComponent, i73.XAxisCrosshairComponent, i74.XAxisCrosshairTooltipComponent, i75.XAxisItemComponent, i76.XAxisLabelsComponent, i77.XAxisNotesComponent, i78.XAxisNotesIconComponent, i79.XAxisNotesLabelComponent, i80.XAxisTitleComponent, i81.YAxisComponent, i82.YAxisCrosshairComponent, i83.YAxisCrosshairTooltipComponent, i84.YAxisItemComponent, i85.YAxisLabelsComponent, i86.YAxisNotesComponent, i87.YAxisNotesIconComponent, i88.YAxisNotesLabelComponent, i89.YAxisTitleComponent, i90.ZoomableComponent] });
|
|
127
129
|
ChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, providers: [
|
|
128
130
|
ThemeService
|
|
129
131
|
], imports: [[CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule]] });
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
export {};
|
|
@@ -9,7 +9,7 @@ export const packageMetadata = {
|
|
|
9
9
|
name: '@progress/kendo-angular-charts',
|
|
10
10
|
productName: 'Kendo UI for Angular',
|
|
11
11
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
12
|
-
publishDate:
|
|
13
|
-
version: '13.6.0-develop.
|
|
12
|
+
publishDate: 1695728998,
|
|
13
|
+
version: '13.6.0-develop.3',
|
|
14
14
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
15
15
|
};
|
|
@@ -582,7 +582,7 @@ class SeriesItemComponent extends CollectionItemComponent {
|
|
|
582
582
|
}
|
|
583
583
|
}
|
|
584
584
|
SeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });
|
|
585
|
-
SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", drilldownField: "drilldownField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: "drilldownTemplate", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
585
|
+
SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", drilldownField: "drilldownField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", trendline: "trendline", for: "for", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: "drilldownTemplate", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
586
586
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, decorators: [{
|
|
587
587
|
type: Component,
|
|
588
588
|
args: [{
|
|
@@ -743,6 +743,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
743
743
|
type: Input
|
|
744
744
|
}], zIndex: [{
|
|
745
745
|
type: Input
|
|
746
|
+
}], trendline: [{
|
|
747
|
+
type: Input
|
|
748
|
+
}], for: [{
|
|
749
|
+
type: Input
|
|
746
750
|
}], errorBars: [{
|
|
747
751
|
type: Input
|
|
748
752
|
}], extremes: [{
|
|
@@ -1867,8 +1871,8 @@ const packageMetadata = {
|
|
|
1867
1871
|
name: '@progress/kendo-angular-charts',
|
|
1868
1872
|
productName: 'Kendo UI for Angular',
|
|
1869
1873
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
1870
|
-
publishDate:
|
|
1871
|
-
version: '13.6.0-develop.
|
|
1874
|
+
publishDate: 1695728998,
|
|
1875
|
+
version: '13.6.0-develop.3',
|
|
1872
1876
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
1873
1877
|
};
|
|
1874
1878
|
|
|
@@ -2804,11 +2808,11 @@ class ChartComponent {
|
|
|
2804
2808
|
if (!series) {
|
|
2805
2809
|
return;
|
|
2806
2810
|
}
|
|
2807
|
-
if (e.pointIndex
|
|
2808
|
-
series.
|
|
2811
|
+
if (e.pointIndex !== undefined) {
|
|
2812
|
+
series.togglePointVisibility(e.pointIndex);
|
|
2809
2813
|
}
|
|
2810
2814
|
else {
|
|
2811
|
-
series.
|
|
2815
|
+
series.toggleVisibility();
|
|
2812
2816
|
}
|
|
2813
2817
|
this.suppressTransitions = true;
|
|
2814
2818
|
}
|
|
@@ -4992,6 +4996,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
4992
4996
|
type: Input
|
|
4993
4997
|
}] } });
|
|
4994
4998
|
|
|
4999
|
+
/**
|
|
5000
|
+
* The configuration options of the Chart trendline series
|
|
5001
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
5002
|
+
*/
|
|
5003
|
+
class SeriesTrendlineComponent extends SettingsComponent {
|
|
5004
|
+
constructor(configurationService) {
|
|
5005
|
+
super('trendline', configurationService);
|
|
5006
|
+
this.configurationService = configurationService;
|
|
5007
|
+
}
|
|
5008
|
+
}
|
|
5009
|
+
SeriesTrendlineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5010
|
+
SeriesTrendlineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesTrendlineComponent, selector: "kendo-chart-series-item-trendline", inputs: { period: "period", forecast: "forecast" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5011
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineComponent, decorators: [{
|
|
5012
|
+
type: Component,
|
|
5013
|
+
args: [{
|
|
5014
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5015
|
+
selector: 'kendo-chart-series-item-trendline',
|
|
5016
|
+
template: ''
|
|
5017
|
+
}]
|
|
5018
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { period: [{
|
|
5019
|
+
type: Input
|
|
5020
|
+
}], forecast: [{
|
|
5021
|
+
type: Input
|
|
5022
|
+
}] } });
|
|
5023
|
+
|
|
5024
|
+
/**
|
|
5025
|
+
* The configuration options of the Chart trendline forecast
|
|
5026
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
5027
|
+
*/
|
|
5028
|
+
class SeriesTrendlineForecastComponent extends SettingsComponent {
|
|
5029
|
+
constructor(configurationService) {
|
|
5030
|
+
super('forecast', configurationService);
|
|
5031
|
+
this.configurationService = configurationService;
|
|
5032
|
+
}
|
|
5033
|
+
}
|
|
5034
|
+
SeriesTrendlineForecastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineForecastComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5035
|
+
SeriesTrendlineForecastComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesTrendlineForecastComponent, selector: "kendo-chart-series-item-trendline-forecast", inputs: { before: "before", after: "after", forecast: "forecast" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineForecastComponent, decorators: [{
|
|
5037
|
+
type: Component,
|
|
5038
|
+
args: [{
|
|
5039
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5040
|
+
selector: 'kendo-chart-series-item-trendline-forecast',
|
|
5041
|
+
template: ''
|
|
5042
|
+
}]
|
|
5043
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { before: [{
|
|
5044
|
+
type: Input
|
|
5045
|
+
}], after: [{
|
|
5046
|
+
type: Input
|
|
5047
|
+
}], forecast: [{
|
|
5048
|
+
type: Input
|
|
5049
|
+
}] } });
|
|
5050
|
+
|
|
4995
5051
|
/**
|
|
4996
5052
|
* The configuration options of the Chart subtitle or text
|
|
4997
5053
|
* ([see example]({% slug title_chart_charts %})).
|
|
@@ -6444,6 +6500,8 @@ const CHART_DIRECTIVES = [
|
|
|
6444
6500
|
SeriesNotesLabelComponent,
|
|
6445
6501
|
SeriesOutliersComponent,
|
|
6446
6502
|
SeriesTooltipComponent,
|
|
6503
|
+
SeriesTrendlineComponent,
|
|
6504
|
+
SeriesTrendlineForecastComponent,
|
|
6447
6505
|
SubtitleComponent,
|
|
6448
6506
|
TitleComponent,
|
|
6449
6507
|
TooltipComponent,
|
|
@@ -7665,7 +7723,7 @@ const SPARKLINE_DIRECTIVES = [
|
|
|
7665
7723
|
class ChartModule {
|
|
7666
7724
|
}
|
|
7667
7725
|
ChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7668
|
-
ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent], imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule], exports: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent] });
|
|
7726
|
+
ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent], imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule], exports: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent] });
|
|
7669
7727
|
ChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, providers: [
|
|
7670
7728
|
ThemeService
|
|
7671
7729
|
], imports: [[CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule]] });
|
|
@@ -7794,5 +7852,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7794
7852
|
* Generated bundle index. Do not edit.
|
|
7795
7853
|
*/
|
|
7796
7854
|
|
|
7797
|
-
export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CHART_DIRECTIVES, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SPARKLINE_DIRECTIVES, STOCK_CHART_DIRECTIVES, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
|
|
7855
|
+
export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CHART_DIRECTIVES, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SPARKLINE_DIRECTIVES, STOCK_CHART_DIRECTIVES, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
|
|
7798
7856
|
|
|
@@ -578,7 +578,7 @@ class SeriesItemComponent extends CollectionItemComponent {
|
|
|
578
578
|
}
|
|
579
579
|
}
|
|
580
580
|
SeriesItemComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, deps: [{ token: ConfigurationService }, { token: CollectionService }], target: i0.ɵɵFactoryTarget.Component });
|
|
581
|
-
SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", drilldownField: "drilldownField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: "drilldownTemplate", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
581
|
+
SeriesItemComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesItemComponent, selector: "kendo-chart-series-item", inputs: { aggregate: "aggregate", autoFit: "autoFit", axis: "axis", border: "border", categoryAxis: "categoryAxis", categoryField: "categoryField", closeField: "closeField", color: "color", colorField: "colorField", connectors: "connectors", currentField: "currentField", dashType: "dashType", data: "data", downColor: "downColor", downColorField: "downColorField", drilldownField: "drilldownField", dynamicHeight: "dynamicHeight", dynamicSlope: "dynamicSlope", errorHighField: "errorHighField", errorLowField: "errorLowField", explodeField: "explodeField", field: "field", fromField: "fromField", gap: "gap", highField: "highField", holeSize: "holeSize", line: "line", lowField: "lowField", lowerField: "lowerField", margin: "margin", maxSize: "maxSize", mean: "mean", meanField: "meanField", median: "median", medianField: "medianField", minSize: "minSize", missingValues: "missingValues", name: "name", neckRatio: "neckRatio", negativeColor: "negativeColor", negativeValues: "negativeValues", noteTextField: "noteTextField", opacity: "opacity", openField: "openField", outliersField: "outliersField", overlay: "overlay", padding: "padding", q1Field: "q1Field", q3Field: "q3Field", segmentSpacing: "segmentSpacing", size: "size", sizeField: "sizeField", spacing: "spacing", stack: "stack", startAngle: "startAngle", style: "style", summaryField: "summaryField", target: "target", toField: "toField", type: "type", upperField: "upperField", visible: "visible", visibleInLegend: "visibleInLegend", visibleInLegendField: "visibleInLegendField", visual: "visual", width: "width", whiskers: "whiskers", xAxis: "xAxis", xErrorHighField: "xErrorHighField", xErrorLowField: "xErrorLowField", xField: "xField", yAxis: "yAxis", yErrorHighField: "yErrorHighField", yErrorLowField: "yErrorLowField", yField: "yField", zIndex: "zIndex", trendline: "trendline", for: "for", errorBars: "errorBars", extremes: "extremes", highlight: "highlight", labels: "labels", markers: "markers", notes: "notes", outliers: "outliers", tooltip: "tooltip" }, providers: [ConfigurationService], queries: [{ propertyName: "seriesTooltip", first: true, predicate: SeriesTooltipComponent, descendants: true }, { propertyName: "drilldownTemplate", first: true, predicate: SeriesDrilldownTemplateDirective, descendants: true }], usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
582
582
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesItemComponent, decorators: [{
|
|
583
583
|
type: Component,
|
|
584
584
|
args: [{
|
|
@@ -739,6 +739,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
739
739
|
type: Input
|
|
740
740
|
}], zIndex: [{
|
|
741
741
|
type: Input
|
|
742
|
+
}], trendline: [{
|
|
743
|
+
type: Input
|
|
744
|
+
}], for: [{
|
|
745
|
+
type: Input
|
|
742
746
|
}], errorBars: [{
|
|
743
747
|
type: Input
|
|
744
748
|
}], extremes: [{
|
|
@@ -2236,8 +2240,8 @@ const packageMetadata = {
|
|
|
2236
2240
|
name: '@progress/kendo-angular-charts',
|
|
2237
2241
|
productName: 'Kendo UI for Angular',
|
|
2238
2242
|
productCodes: ['KENDOUIANGULAR', 'KENDOUICOMPLETE'],
|
|
2239
|
-
publishDate:
|
|
2240
|
-
version: '13.6.0-develop.
|
|
2243
|
+
publishDate: 1695728998,
|
|
2244
|
+
version: '13.6.0-develop.3',
|
|
2241
2245
|
licensingDocsUrl: 'https://www.telerik.com/kendo-angular-ui/my-license/'
|
|
2242
2246
|
};
|
|
2243
2247
|
|
|
@@ -2796,11 +2800,11 @@ class ChartComponent {
|
|
|
2796
2800
|
if (!series) {
|
|
2797
2801
|
return;
|
|
2798
2802
|
}
|
|
2799
|
-
if (e.pointIndex
|
|
2800
|
-
series.
|
|
2803
|
+
if (e.pointIndex !== undefined) {
|
|
2804
|
+
series.togglePointVisibility(e.pointIndex);
|
|
2801
2805
|
}
|
|
2802
2806
|
else {
|
|
2803
|
-
series.
|
|
2807
|
+
series.toggleVisibility();
|
|
2804
2808
|
}
|
|
2805
2809
|
this.suppressTransitions = true;
|
|
2806
2810
|
}
|
|
@@ -5017,6 +5021,58 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
5017
5021
|
type: Input
|
|
5018
5022
|
}] } });
|
|
5019
5023
|
|
|
5024
|
+
/**
|
|
5025
|
+
* The configuration options of the Chart trendline series
|
|
5026
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
5027
|
+
*/
|
|
5028
|
+
class SeriesTrendlineComponent extends SettingsComponent {
|
|
5029
|
+
constructor(configurationService) {
|
|
5030
|
+
super('trendline', configurationService);
|
|
5031
|
+
this.configurationService = configurationService;
|
|
5032
|
+
}
|
|
5033
|
+
}
|
|
5034
|
+
SeriesTrendlineComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5035
|
+
SeriesTrendlineComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesTrendlineComponent, selector: "kendo-chart-series-item-trendline", inputs: { period: "period", forecast: "forecast" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5036
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineComponent, decorators: [{
|
|
5037
|
+
type: Component,
|
|
5038
|
+
args: [{
|
|
5039
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5040
|
+
selector: 'kendo-chart-series-item-trendline',
|
|
5041
|
+
template: ''
|
|
5042
|
+
}]
|
|
5043
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { period: [{
|
|
5044
|
+
type: Input
|
|
5045
|
+
}], forecast: [{
|
|
5046
|
+
type: Input
|
|
5047
|
+
}] } });
|
|
5048
|
+
|
|
5049
|
+
/**
|
|
5050
|
+
* The configuration options of the Chart trendline forecast
|
|
5051
|
+
* ([see example]({% slug trendlines_chart_charts %})).
|
|
5052
|
+
*/
|
|
5053
|
+
class SeriesTrendlineForecastComponent extends SettingsComponent {
|
|
5054
|
+
constructor(configurationService) {
|
|
5055
|
+
super('forecast', configurationService);
|
|
5056
|
+
this.configurationService = configurationService;
|
|
5057
|
+
}
|
|
5058
|
+
}
|
|
5059
|
+
SeriesTrendlineForecastComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineForecastComponent, deps: [{ token: ConfigurationService }], target: i0.ɵɵFactoryTarget.Component });
|
|
5060
|
+
SeriesTrendlineForecastComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.12", type: SeriesTrendlineForecastComponent, selector: "kendo-chart-series-item-trendline-forecast", inputs: { before: "before", after: "after", forecast: "forecast" }, usesInheritance: true, ngImport: i0, template: '', isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
5061
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: SeriesTrendlineForecastComponent, decorators: [{
|
|
5062
|
+
type: Component,
|
|
5063
|
+
args: [{
|
|
5064
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
5065
|
+
selector: 'kendo-chart-series-item-trendline-forecast',
|
|
5066
|
+
template: ''
|
|
5067
|
+
}]
|
|
5068
|
+
}], ctorParameters: function () { return [{ type: ConfigurationService }]; }, propDecorators: { before: [{
|
|
5069
|
+
type: Input
|
|
5070
|
+
}], after: [{
|
|
5071
|
+
type: Input
|
|
5072
|
+
}], forecast: [{
|
|
5073
|
+
type: Input
|
|
5074
|
+
}] } });
|
|
5075
|
+
|
|
5020
5076
|
/**
|
|
5021
5077
|
* The configuration options of the Chart subtitle or text
|
|
5022
5078
|
* ([see example]({% slug title_chart_charts %})).
|
|
@@ -6467,6 +6523,8 @@ const CHART_DIRECTIVES = [
|
|
|
6467
6523
|
SeriesNotesLabelComponent,
|
|
6468
6524
|
SeriesOutliersComponent,
|
|
6469
6525
|
SeriesTooltipComponent,
|
|
6526
|
+
SeriesTrendlineComponent,
|
|
6527
|
+
SeriesTrendlineForecastComponent,
|
|
6470
6528
|
SubtitleComponent,
|
|
6471
6529
|
TitleComponent,
|
|
6472
6530
|
TooltipComponent,
|
|
@@ -7649,7 +7707,7 @@ const SPARKLINE_DIRECTIVES = [
|
|
|
7649
7707
|
class ChartModule {
|
|
7650
7708
|
}
|
|
7651
7709
|
ChartModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
7652
|
-
ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent], imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule], exports: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent] });
|
|
7710
|
+
ChartModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, declarations: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent], imports: [CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule], exports: [ChartComponent, TooltipPopupComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, CrosshairTooltipsContainerComponent, CrosshairTooltipComponent, DonutCenterTemplateDirective, AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisRangeLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, LegendComponent, LegendInactiveItemsComponent, LegendItemComponent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PanesComponent, PanesTitleComponent, PlotAreaComponent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SubtitleComponent, TitleComponent, TooltipComponent, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomableComponent] });
|
|
7653
7711
|
ChartModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.12", ngImport: i0, type: ChartModule, providers: [
|
|
7654
7712
|
ThemeService
|
|
7655
7713
|
], imports: [[CommonModule, BreadCrumbModule, PopupModule, ResizeSensorModule, WatermarkModule]] });
|
|
@@ -7778,5 +7836,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.12", ngImpo
|
|
|
7778
7836
|
* Generated bundle index. Do not edit.
|
|
7779
7837
|
*/
|
|
7780
7838
|
|
|
7781
|
-
export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CHART_DIRECTIVES, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SPARKLINE_DIRECTIVES, STOCK_CHART_DIRECTIVES, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
|
|
7839
|
+
export { AxisDefaultsComponent, AxisDefaultsCrosshairComponent, AxisDefaultsCrosshairTooltipComponent, AxisDefaultsLabelsComponent, AxisDefaultsTitleComponent, AxisLabelClickEvent, CHART_DIRECTIVES, CategoryAxisComponent, CategoryAxisCrosshairComponent, CategoryAxisCrosshairTooltipComponent, CategoryAxisItemComponent, CategoryAxisLabelsComponent, CategoryAxisNotesComponent, CategoryAxisNotesIconComponent, CategoryAxisNotesLabelComponent, CategoryAxisRangeLabelsComponent, CategoryAxisSelectComponent, CategoryAxisTitleComponent, ChartAreaComponent, ChartBreadcrumbComponent, ChartComponent, ChartModule, ChartsModule, CollectionService, ConfigurationService, CrosshairTooltipComponent, CrosshairTooltipsContainerComponent, DonutCenterTemplateDirective, DragEndEvent, DragEvent, DragStartEvent, DrilldownEvent, LegendComponent, LegendInactiveItemsComponent, LegendItemClickEvent, LegendItemComponent, LegendItemHoverEvent, LegendItemLeaveEvent, NavigatorCategoryAxisComponent, NavigatorCategoryAxisCrosshairComponent, NavigatorCategoryAxisCrosshairTooltipComponent, NavigatorCategoryAxisLabelsComponent, NavigatorCategoryAxisNotesComponent, NavigatorCategoryAxisNotesIconComponent, NavigatorCategoryAxisNotesLabelComponent, NavigatorCategoryAxisSelectComponent, NavigatorCategoryAxisTitleComponent, NavigatorComponent, NavigatorFilterEvent, NavigatorHintComponent, NavigatorPaneComponent, NavigatorPaneTitleComponent, NavigatorSelectComponent, NavigatorSeriesComponent, NavigatorSeriesErrorBarsComponent, NavigatorSeriesExtremesComponent, NavigatorSeriesHighlightComponent, NavigatorSeriesItemComponent, NavigatorSeriesLabelsComponent, NavigatorSeriesLabelsFromComponent, NavigatorSeriesLabelsToComponent, NavigatorSeriesMarkersComponent, NavigatorSeriesNotesComponent, NavigatorSeriesNotesIconComponent, NavigatorSeriesNotesLabelComponent, NavigatorSeriesOutliersComponent, NavigatorSeriesTooltipComponent, NoteClickEvent, NoteHoverEvent, PaneComponent, PaneDefaultsComponent, PaneDefaultsTitleComponent, PaneRenderEvent, PanesComponent, PanesTitleComponent, PlotAreaClickEvent, PlotAreaComponent, PlotAreaHoverEvent, RenderEvent, SPARKLINE_DIRECTIVES, STOCK_CHART_DIRECTIVES, SelectEndEvent, SelectEvent, SelectStartEvent, SeriesClickEvent, SeriesComponent, SeriesDefaultsComponent, SeriesDefaultsLabelsComponent, SeriesDefaultsLabelsFromComponent, SeriesDefaultsLabelsToComponent, SeriesDefaultsNotesComponent, SeriesDefaultsNotesIconComponent, SeriesDefaultsNotesLabelComponent, SeriesDefaultsTooltipComponent, SeriesDrilldownTemplateDirective, SeriesErrorBarsComponent, SeriesExtremesComponent, SeriesHighlightComponent, SeriesHoverEvent, SeriesItemComponent, SeriesLabelsComponent, SeriesLabelsFromComponent, SeriesLabelsToComponent, SeriesMarkersComponent, SeriesNotesComponent, SeriesNotesIconComponent, SeriesNotesLabelComponent, SeriesOutliersComponent, SeriesTooltipComponent, SeriesTooltipTemplateDirective, SeriesTrendlineComponent, SeriesTrendlineForecastComponent, SharedTooltipTemplateDirective, SparklineComponent, SparklineModule, StockChartComponent, StockChartModule, SubtitleComponent, TitleComponent, TooltipComponent, TooltipPopupComponent, TooltipTemplateService, ValueAxisComponent, ValueAxisCrosshairComponent, ValueAxisCrosshairTooltipComponent, ValueAxisItemComponent, ValueAxisLabelsComponent, ValueAxisNotesComponent, ValueAxisNotesIconComponent, ValueAxisNotesLabelComponent, ValueAxisTitleComponent, WeekStartDay, XAxisComponent, XAxisCrosshairComponent, XAxisCrosshairTooltipComponent, XAxisItemComponent, XAxisLabelsComponent, XAxisNotesComponent, XAxisNotesIconComponent, XAxisNotesLabelComponent, XAxisTitleComponent, YAxisComponent, YAxisCrosshairComponent, YAxisCrosshairTooltipComponent, YAxisItemComponent, YAxisLabelsComponent, YAxisNotesComponent, YAxisNotesIconComponent, YAxisNotesLabelComponent, YAxisTitleComponent, ZoomEndEvent, ZoomEvent, ZoomStartEvent, ZoomableComponent };
|
|
7782
7840
|
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
* - `"heatmap"`—Displays the data as a heatmap, which is useful for comparing values in a matrix.
|
|
19
19
|
* - `"horizontalWaterfall"`—Displays the data as a horizontal waterfall chart, which is useful for comparing positive and negative values over a period.
|
|
20
20
|
* - `"line"`—Displays the data as continuous lines that connect data points evenly distributed along the category field.
|
|
21
|
+
* - `"linearTrendline"`—Displays a linear [trendline]({% slug trendlines_chart_charts %}) for the specified parent series.
|
|
22
|
+
* - `"movingAverageTrendline"`—Displays a moving average [trendline]({% slug trendlines_chart_charts %}) for the specified parent series.
|
|
21
23
|
* - `"ohlc"`—Displays the data as OHLC (open-high-low-close) bars, which show the open, high, low, and close values of a series.
|
|
22
24
|
* - `"pie"`—Displays the data as a series of pie slices, which show the contribution of each value to a total.
|
|
23
25
|
* - `"polarArea"`—Displays the data as a series of polar area segments, which show the contribution of each value to a total.
|
|
@@ -61,4 +63,4 @@
|
|
|
61
63
|
*
|
|
62
64
|
* ```
|
|
63
65
|
*/
|
|
64
|
-
export declare type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'pyramid' | 'heatmap' | 'horizontalWaterfall' | 'line' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
|
|
66
|
+
export declare type SeriesType = 'area' | 'bar' | 'boxPlot' | 'bubble' | 'bullet' | 'candlestick' | 'column' | 'donut' | 'funnel' | 'pyramid' | 'heatmap' | 'horizontalWaterfall' | 'line' | 'linearTrendline' | 'movingAverageTrendline' | 'ohlc' | 'pie' | 'polarArea' | 'polarLine' | 'polarScatter' | 'radarArea' | 'radarColumn' | 'radarLine' | 'rangeArea' | 'rangeBar' | 'rangeColumn' | 'scatter' | 'scatterLine' | 'verticalArea' | 'verticalBoxPlot' | 'verticalBullet' | 'verticalLine' | 'verticalRangeArea' | 'waterfall';
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
/**
|
|
6
|
+
* The series trendline forecast settings.
|
|
7
|
+
*/
|
|
8
|
+
export interface TrendlineForecast {
|
|
9
|
+
/**
|
|
10
|
+
* The number of intervals to extend the trendline before the first data point.
|
|
11
|
+
*/
|
|
12
|
+
before?: number;
|
|
13
|
+
/**
|
|
14
|
+
* The number of intervals to extend the trendline after the last data point.
|
|
15
|
+
*/
|
|
16
|
+
after?: number;
|
|
17
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/**-----------------------------------------------------------------------------------------
|
|
2
|
+
* Copyright © 2023 Progress Software Corporation. All rights reserved.
|
|
3
|
+
* Licensed under commercial license. See LICENSE.md in the project root for more information
|
|
4
|
+
*-------------------------------------------------------------------------------------------*/
|
|
5
|
+
import { TrendlineForecast } from "../../common/property-types";
|
|
6
|
+
/**
|
|
7
|
+
* The configuration options of the series trendlines.
|
|
8
|
+
*/
|
|
9
|
+
export interface SeriesTrendline {
|
|
10
|
+
/**
|
|
11
|
+
* The trendline forecast settings. By default, the trendline does not display a forecast.
|
|
12
|
+
*
|
|
13
|
+
* The forecast setting is supported for Linear Trendlines on date and scatter series.
|
|
14
|
+
*/
|
|
15
|
+
forecast?: TrendlineForecast;
|
|
16
|
+
/**
|
|
17
|
+
* The number of intervals to take when calculating averages. The value should be an integer greater than 2.
|
|
18
|
+
*
|
|
19
|
+
* The period setting is supported only for Moving Average trendlines.
|
|
20
|
+
*/
|
|
21
|
+
period?: number;
|
|
22
|
+
}
|
|
@@ -11,7 +11,7 @@ import { SeriesMarkers } from './series-item/markers.interface';
|
|
|
11
11
|
import { SeriesNotes } from './series-item/notes.interface';
|
|
12
12
|
import { SeriesOutliers } from './series-item/outliers.interface';
|
|
13
13
|
import { SeriesTooltip } from './series-item/tooltip.interface';
|
|
14
|
-
import { Border, BulletTarget, DashType, LabelConnectors } from '../common/property-types';
|
|
14
|
+
import { Border, BulletTarget, DashType, LabelConnectors, SeriesTrendline } from '../common/property-types';
|
|
15
15
|
import { Margin, NegativeBubbleValues, Overlay, SeriesLine, SeriesType, SeriesWhiskers } from '../common/property-types';
|
|
16
16
|
import { LineStyle, SeriesStack, SeriesVisualArgs } from '../common/property-types';
|
|
17
17
|
import { SeriesMedian } from '../field-types/series-median.interface';
|
|
@@ -164,6 +164,12 @@ export interface Series {
|
|
|
164
164
|
* The data item field which contains the series value.
|
|
165
165
|
*/
|
|
166
166
|
field?: string;
|
|
167
|
+
/**
|
|
168
|
+
* The name of the parent series of the trendline.
|
|
169
|
+
*
|
|
170
|
+
* The `for` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"linearTrendline"` or `"movingAverageTrendline"`.
|
|
171
|
+
*/
|
|
172
|
+
for?: string;
|
|
167
173
|
/**
|
|
168
174
|
* The data item field which contains the series from value.
|
|
169
175
|
*/
|
|
@@ -507,6 +513,12 @@ export interface Series {
|
|
|
507
513
|
* The configuration options of the Chart series tooltip.
|
|
508
514
|
*/
|
|
509
515
|
tooltip?: SeriesTooltip;
|
|
516
|
+
/**
|
|
517
|
+
* The trendline configuration options.
|
|
518
|
+
*
|
|
519
|
+
* The `trendline` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"linearTrendline"` or `"movingAverageTrendline"`.
|
|
520
|
+
*/
|
|
521
|
+
trendlines?: SeriesTrendline[];
|
|
510
522
|
/**
|
|
511
523
|
* The configuration of the whiskers for the Chart series.
|
|
512
524
|
* The `whiskers` option is supported when [`series.type`]({% slug api_charts_series %}#toc-type) is set to `"boxPlot"`.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@progress/kendo-angular-charts",
|
|
3
|
-
"version": "13.6.0-develop.
|
|
3
|
+
"version": "13.6.0-develop.3",
|
|
4
4
|
"description": "Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": "Progress",
|
|
@@ -47,18 +47,18 @@
|
|
|
47
47
|
"@angular/platform-browser": "13 - 16",
|
|
48
48
|
"@progress/kendo-drawing": "^1.17.2",
|
|
49
49
|
"@progress/kendo-licensing": "^1.0.2",
|
|
50
|
-
"@progress/kendo-angular-common": "13.6.0-develop.
|
|
51
|
-
"@progress/kendo-angular-intl": "13.6.0-develop.
|
|
52
|
-
"@progress/kendo-angular-l10n": "13.6.0-develop.
|
|
53
|
-
"@progress/kendo-angular-popup": "13.6.0-develop.
|
|
54
|
-
"@progress/kendo-angular-navigation": "13.6.0-develop.
|
|
50
|
+
"@progress/kendo-angular-common": "13.6.0-develop.3",
|
|
51
|
+
"@progress/kendo-angular-intl": "13.6.0-develop.3",
|
|
52
|
+
"@progress/kendo-angular-l10n": "13.6.0-develop.3",
|
|
53
|
+
"@progress/kendo-angular-popup": "13.6.0-develop.3",
|
|
54
|
+
"@progress/kendo-angular-navigation": "13.6.0-develop.3",
|
|
55
55
|
"hammerjs": "^2.0.0",
|
|
56
56
|
"rxjs": "^6.5.3 || ^7.0.0"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"tslib": "^2.3.1",
|
|
60
|
-
"@progress/kendo-angular-schematics": "13.6.0-develop.
|
|
61
|
-
"@progress/kendo-charts": "^1.
|
|
60
|
+
"@progress/kendo-angular-schematics": "13.6.0-develop.3",
|
|
61
|
+
"@progress/kendo-charts": "^1.32.0",
|
|
62
62
|
"@progress/kendo-svg-icons": "^1.0.0"
|
|
63
63
|
},
|
|
64
64
|
"schematics": "./schematics/collection.json",
|