@mescius/wijmo.angular2legacy.chart.annotation 5.20232.939

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/index.d.ts ADDED
@@ -0,0 +1,490 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+ /**
14
+ * {@module wijmo.angular2legacy.chart.annotation}
15
+ * Contains Angular 2 components for the <b>wijmo.chart.annotation</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.chart.annotation</b> is an external TypeScript module that can be imported to your code
18
+ * using its ambient module name. For example:
19
+ *
20
+ * <pre>import * as wjAnnotation from 'wijmo/wijmo.angular2legacy.chart.annotation';
21
+ * import * as wjChart from 'wijmo/wijmo.angular2legacy.chart';
22
+ * &nbsp;
23
+ * &#64;Component({
24
+ * directives: [wjChart.WjFlexChart, wjAnnotation.WjFlexChartAnnotationLayer,
25
+ * wjAnnotation.WjFlexChartAnnotationCircle, wjChart.WjFlexChartSeries],
26
+ * template: `
27
+ * &lt;wj-flex-chart [itemsSource]="data" [bindingX]="'x'"&gt;
28
+ * &lt;wj-flex-chart-series [binding]="'y'"&gt;&lt;/wj-flex-chart-series&gt;
29
+ * &lt;wj-flex-chart-annotation-layer&gt;
30
+ * &lt;wj-flex-chart-annotation-circle [radius]="40" [point]="{x: 250, y: 150}"&gt;&lt;/wj-flex-chart-annotation-circle&gt;
31
+ * &lt;/wj-flex-chart-annotation-layer&gt;
32
+ * &lt;/wj-flex-chart&gt;`,
33
+ * selector: 'my-cmp',
34
+ * })
35
+ * export class MyCmp {
36
+ * data: any[];
37
+ * }</pre>
38
+ *
39
+ */
40
+ /**
41
+ *
42
+ */
43
+ export declare var ___keepComment: any;
44
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
45
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
46
+ import * as wjcChartAnnotation from '@grapecity/wijmo.chart.annotation';
47
+ declare var wjFlexChartAnnotationLayerMeta: IWjComponentMeta;
48
+ export { wjFlexChartAnnotationLayerMeta };
49
+ /**
50
+ * Angular 2 component for the {@link wijmo.chart.annotation.AnnotationLayer} class.
51
+ *
52
+ * The <b>wj-flex-chart-annotation-layer</b> component must be
53
+ * contained in one of the following components:
54
+ * {@link wijmo.angular2legacy.chart.WjFlexChart}
55
+ * or {@link wijmo.angular2legacy.chart.finance.WjFinancialChart}.
56
+ *
57
+ * Use the <b>wj-flex-chart-annotation-layer</b> component to add <b>AnnotationLayer</b> controls to your
58
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
59
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
60
+ *
61
+ * The <b>WjFlexChartAnnotationLayer</b> component is derived from the <b>AnnotationLayer</b> class and
62
+ * inherits all its properties, events and methods.
63
+ *
64
+ * The <b>wj-flex-chart-annotation-layer</b> component may contain the following child components:
65
+ * {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationText}
66
+ * , {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationEllipse}
67
+ * , {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationRectangle}
68
+ * , {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLine}
69
+ * , {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationPolygon}
70
+ * , {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationCircle}
71
+ * , {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationSquare}
72
+ * and {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationImage}.
73
+ */
74
+ export declare class WjFlexChartAnnotationLayer extends wjcChartAnnotation.AnnotationLayer implements OnInit, OnDestroy, AfterViewInit {
75
+ static readonly meta: IWjComponentMetadata;
76
+ private _wjBehaviour;
77
+ /**
78
+ * Indicates whether the component has been initialized by Angular.
79
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
80
+ */
81
+ isInitialized: boolean;
82
+ /**
83
+ * This event is triggered after the component has been initialized by Angular, that is
84
+ * all bound properties have been assigned and child components (if any) have been initialized.
85
+ */
86
+ initialized: EventEmitter<any>;
87
+ /**
88
+ * Gets or sets a name of a property that this component is assigned to.
89
+ * Default value is ''.
90
+ */
91
+ wjProperty: string;
92
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
93
+ /**
94
+ * If you create a custom component inherited from a Wijmo component, you can override this
95
+ * method and perform necessary initializations that you usually do in a class constructor.
96
+ * This method is called in the last line of a Wijmo component constructor and allows you
97
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
98
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
99
+ */
100
+ created(): void;
101
+ ngOnInit(): void;
102
+ ngAfterViewInit(): void;
103
+ ngOnDestroy(): void;
104
+ }
105
+ declare var wjFlexChartAnnotationTextMeta: IWjComponentMeta;
106
+ export { wjFlexChartAnnotationTextMeta };
107
+ /**
108
+ * Angular 2 component for the {@link wijmo.chart.annotation.Text} class.
109
+ *
110
+ * The <b>wj-flex-chart-annotation-text</b> component must be
111
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
112
+ *
113
+ * Use the <b>wj-flex-chart-annotation-text</b> component to add <b>Text</b> controls to your
114
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
115
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
116
+ *
117
+ * The <b>WjFlexChartAnnotationText</b> component is derived from the <b>Text</b> class and
118
+ * inherits all its properties, events and methods.
119
+ *
120
+ * The <b>wj-flex-chart-annotation-text</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
121
+ */
122
+ export declare class WjFlexChartAnnotationText extends wjcChartAnnotation.Text implements OnInit, OnDestroy, AfterViewInit {
123
+ static readonly meta: IWjComponentMetadata;
124
+ private _wjBehaviour;
125
+ /**
126
+ * Indicates whether the component has been initialized by Angular.
127
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
128
+ */
129
+ isInitialized: boolean;
130
+ /**
131
+ * This event is triggered after the component has been initialized by Angular, that is
132
+ * all bound properties have been assigned and child components (if any) have been initialized.
133
+ */
134
+ initialized: EventEmitter<any>;
135
+ /**
136
+ * Gets or sets a name of a property that this component is assigned to.
137
+ * Default value is 'items'.
138
+ */
139
+ wjProperty: string;
140
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
141
+ /**
142
+ * If you create a custom component inherited from a Wijmo component, you can override this
143
+ * method and perform necessary initializations that you usually do in a class constructor.
144
+ * This method is called in the last line of a Wijmo component constructor and allows you
145
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
146
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
147
+ */
148
+ created(): void;
149
+ ngOnInit(): void;
150
+ ngAfterViewInit(): void;
151
+ ngOnDestroy(): void;
152
+ }
153
+ declare var wjFlexChartAnnotationEllipseMeta: IWjComponentMeta;
154
+ export { wjFlexChartAnnotationEllipseMeta };
155
+ /**
156
+ * Angular 2 component for the {@link wijmo.chart.annotation.Ellipse} class.
157
+ *
158
+ * The <b>wj-flex-chart-annotation-ellipse</b> component must be
159
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
160
+ *
161
+ * Use the <b>wj-flex-chart-annotation-ellipse</b> component to add <b>Ellipse</b> controls to your
162
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
163
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
164
+ *
165
+ * The <b>WjFlexChartAnnotationEllipse</b> component is derived from the <b>Ellipse</b> class and
166
+ * inherits all its properties, events and methods.
167
+ *
168
+ * The <b>wj-flex-chart-annotation-ellipse</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
169
+ */
170
+ export declare class WjFlexChartAnnotationEllipse extends wjcChartAnnotation.Ellipse implements OnInit, OnDestroy, AfterViewInit {
171
+ static readonly meta: IWjComponentMetadata;
172
+ private _wjBehaviour;
173
+ /**
174
+ * Indicates whether the component has been initialized by Angular.
175
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
176
+ */
177
+ isInitialized: boolean;
178
+ /**
179
+ * This event is triggered after the component has been initialized by Angular, that is
180
+ * all bound properties have been assigned and child components (if any) have been initialized.
181
+ */
182
+ initialized: EventEmitter<any>;
183
+ /**
184
+ * Gets or sets a name of a property that this component is assigned to.
185
+ * Default value is 'items'.
186
+ */
187
+ wjProperty: string;
188
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
189
+ /**
190
+ * If you create a custom component inherited from a Wijmo component, you can override this
191
+ * method and perform necessary initializations that you usually do in a class constructor.
192
+ * This method is called in the last line of a Wijmo component constructor and allows you
193
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
194
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
195
+ */
196
+ created(): void;
197
+ ngOnInit(): void;
198
+ ngAfterViewInit(): void;
199
+ ngOnDestroy(): void;
200
+ }
201
+ declare var wjFlexChartAnnotationRectangleMeta: IWjComponentMeta;
202
+ export { wjFlexChartAnnotationRectangleMeta };
203
+ /**
204
+ * Angular 2 component for the {@link wijmo.chart.annotation.Rectangle} class.
205
+ *
206
+ * The <b>wj-flex-chart-annotation-rectangle</b> component must be
207
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
208
+ *
209
+ * Use the <b>wj-flex-chart-annotation-rectangle</b> component to add <b>Rectangle</b> controls to your
210
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
211
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
212
+ *
213
+ * The <b>WjFlexChartAnnotationRectangle</b> component is derived from the <b>Rectangle</b> class and
214
+ * inherits all its properties, events and methods.
215
+ *
216
+ * The <b>wj-flex-chart-annotation-rectangle</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
217
+ */
218
+ export declare class WjFlexChartAnnotationRectangle extends wjcChartAnnotation.Rectangle implements OnInit, OnDestroy, AfterViewInit {
219
+ static readonly meta: IWjComponentMetadata;
220
+ private _wjBehaviour;
221
+ /**
222
+ * Indicates whether the component has been initialized by Angular.
223
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
224
+ */
225
+ isInitialized: boolean;
226
+ /**
227
+ * This event is triggered after the component has been initialized by Angular, that is
228
+ * all bound properties have been assigned and child components (if any) have been initialized.
229
+ */
230
+ initialized: EventEmitter<any>;
231
+ /**
232
+ * Gets or sets a name of a property that this component is assigned to.
233
+ * Default value is 'items'.
234
+ */
235
+ wjProperty: string;
236
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
237
+ /**
238
+ * If you create a custom component inherited from a Wijmo component, you can override this
239
+ * method and perform necessary initializations that you usually do in a class constructor.
240
+ * This method is called in the last line of a Wijmo component constructor and allows you
241
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
242
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
243
+ */
244
+ created(): void;
245
+ ngOnInit(): void;
246
+ ngAfterViewInit(): void;
247
+ ngOnDestroy(): void;
248
+ }
249
+ declare var wjFlexChartAnnotationLineMeta: IWjComponentMeta;
250
+ export { wjFlexChartAnnotationLineMeta };
251
+ /**
252
+ * Angular 2 component for the {@link wijmo.chart.annotation.Line} class.
253
+ *
254
+ * The <b>wj-flex-chart-annotation-line</b> component must be
255
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
256
+ *
257
+ * Use the <b>wj-flex-chart-annotation-line</b> component to add <b>Line</b> controls to your
258
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
259
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
260
+ *
261
+ * The <b>WjFlexChartAnnotationLine</b> component is derived from the <b>Line</b> class and
262
+ * inherits all its properties, events and methods.
263
+ *
264
+ * The <b>wj-flex-chart-annotation-line</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
265
+ */
266
+ export declare class WjFlexChartAnnotationLine extends wjcChartAnnotation.Line implements OnInit, OnDestroy, AfterViewInit {
267
+ static readonly meta: IWjComponentMetadata;
268
+ private _wjBehaviour;
269
+ /**
270
+ * Indicates whether the component has been initialized by Angular.
271
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
272
+ */
273
+ isInitialized: boolean;
274
+ /**
275
+ * This event is triggered after the component has been initialized by Angular, that is
276
+ * all bound properties have been assigned and child components (if any) have been initialized.
277
+ */
278
+ initialized: EventEmitter<any>;
279
+ /**
280
+ * Gets or sets a name of a property that this component is assigned to.
281
+ * Default value is 'items'.
282
+ */
283
+ wjProperty: string;
284
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
285
+ /**
286
+ * If you create a custom component inherited from a Wijmo component, you can override this
287
+ * method and perform necessary initializations that you usually do in a class constructor.
288
+ * This method is called in the last line of a Wijmo component constructor and allows you
289
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
290
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
291
+ */
292
+ created(): void;
293
+ ngOnInit(): void;
294
+ ngAfterViewInit(): void;
295
+ ngOnDestroy(): void;
296
+ }
297
+ declare var wjFlexChartAnnotationPolygonMeta: IWjComponentMeta;
298
+ export { wjFlexChartAnnotationPolygonMeta };
299
+ /**
300
+ * Angular 2 component for the {@link wijmo.chart.annotation.Polygon} class.
301
+ *
302
+ * The <b>wj-flex-chart-annotation-polygon</b> component must be
303
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
304
+ *
305
+ * Use the <b>wj-flex-chart-annotation-polygon</b> component to add <b>Polygon</b> controls to your
306
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
307
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
308
+ *
309
+ * The <b>WjFlexChartAnnotationPolygon</b> component is derived from the <b>Polygon</b> class and
310
+ * inherits all its properties, events and methods.
311
+ *
312
+ * The <b>wj-flex-chart-annotation-polygon</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
313
+ */
314
+ export declare class WjFlexChartAnnotationPolygon extends wjcChartAnnotation.Polygon implements OnInit, OnDestroy, AfterViewInit {
315
+ static readonly meta: IWjComponentMetadata;
316
+ private _wjBehaviour;
317
+ /**
318
+ * Indicates whether the component has been initialized by Angular.
319
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
320
+ */
321
+ isInitialized: boolean;
322
+ /**
323
+ * This event is triggered after the component has been initialized by Angular, that is
324
+ * all bound properties have been assigned and child components (if any) have been initialized.
325
+ */
326
+ initialized: EventEmitter<any>;
327
+ /**
328
+ * Gets or sets a name of a property that this component is assigned to.
329
+ * Default value is 'items'.
330
+ */
331
+ wjProperty: string;
332
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
333
+ /**
334
+ * If you create a custom component inherited from a Wijmo component, you can override this
335
+ * method and perform necessary initializations that you usually do in a class constructor.
336
+ * This method is called in the last line of a Wijmo component constructor and allows you
337
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
338
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
339
+ */
340
+ created(): void;
341
+ ngOnInit(): void;
342
+ ngAfterViewInit(): void;
343
+ ngOnDestroy(): void;
344
+ }
345
+ declare var wjFlexChartAnnotationCircleMeta: IWjComponentMeta;
346
+ export { wjFlexChartAnnotationCircleMeta };
347
+ /**
348
+ * Angular 2 component for the {@link wijmo.chart.annotation.Circle} class.
349
+ *
350
+ * The <b>wj-flex-chart-annotation-circle</b> component must be
351
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
352
+ *
353
+ * Use the <b>wj-flex-chart-annotation-circle</b> component to add <b>Circle</b> controls to your
354
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
355
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
356
+ *
357
+ * The <b>WjFlexChartAnnotationCircle</b> component is derived from the <b>Circle</b> class and
358
+ * inherits all its properties, events and methods.
359
+ *
360
+ * The <b>wj-flex-chart-annotation-circle</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
361
+ */
362
+ export declare class WjFlexChartAnnotationCircle extends wjcChartAnnotation.Circle implements OnInit, OnDestroy, AfterViewInit {
363
+ static readonly meta: IWjComponentMetadata;
364
+ private _wjBehaviour;
365
+ /**
366
+ * Indicates whether the component has been initialized by Angular.
367
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
368
+ */
369
+ isInitialized: boolean;
370
+ /**
371
+ * This event is triggered after the component has been initialized by Angular, that is
372
+ * all bound properties have been assigned and child components (if any) have been initialized.
373
+ */
374
+ initialized: EventEmitter<any>;
375
+ /**
376
+ * Gets or sets a name of a property that this component is assigned to.
377
+ * Default value is 'items'.
378
+ */
379
+ wjProperty: string;
380
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
381
+ /**
382
+ * If you create a custom component inherited from a Wijmo component, you can override this
383
+ * method and perform necessary initializations that you usually do in a class constructor.
384
+ * This method is called in the last line of a Wijmo component constructor and allows you
385
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
386
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
387
+ */
388
+ created(): void;
389
+ ngOnInit(): void;
390
+ ngAfterViewInit(): void;
391
+ ngOnDestroy(): void;
392
+ }
393
+ declare var wjFlexChartAnnotationSquareMeta: IWjComponentMeta;
394
+ export { wjFlexChartAnnotationSquareMeta };
395
+ /**
396
+ * Angular 2 component for the {@link wijmo.chart.annotation.Square} class.
397
+ *
398
+ * The <b>wj-flex-chart-annotation-square</b> component must be
399
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
400
+ *
401
+ * Use the <b>wj-flex-chart-annotation-square</b> component to add <b>Square</b> controls to your
402
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
403
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
404
+ *
405
+ * The <b>WjFlexChartAnnotationSquare</b> component is derived from the <b>Square</b> class and
406
+ * inherits all its properties, events and methods.
407
+ *
408
+ * The <b>wj-flex-chart-annotation-square</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
409
+ */
410
+ export declare class WjFlexChartAnnotationSquare extends wjcChartAnnotation.Square implements OnInit, OnDestroy, AfterViewInit {
411
+ static readonly meta: IWjComponentMetadata;
412
+ private _wjBehaviour;
413
+ /**
414
+ * Indicates whether the component has been initialized by Angular.
415
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
416
+ */
417
+ isInitialized: boolean;
418
+ /**
419
+ * This event is triggered after the component has been initialized by Angular, that is
420
+ * all bound properties have been assigned and child components (if any) have been initialized.
421
+ */
422
+ initialized: EventEmitter<any>;
423
+ /**
424
+ * Gets or sets a name of a property that this component is assigned to.
425
+ * Default value is 'items'.
426
+ */
427
+ wjProperty: string;
428
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
429
+ /**
430
+ * If you create a custom component inherited from a Wijmo component, you can override this
431
+ * method and perform necessary initializations that you usually do in a class constructor.
432
+ * This method is called in the last line of a Wijmo component constructor and allows you
433
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
434
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
435
+ */
436
+ created(): void;
437
+ ngOnInit(): void;
438
+ ngAfterViewInit(): void;
439
+ ngOnDestroy(): void;
440
+ }
441
+ declare var wjFlexChartAnnotationImageMeta: IWjComponentMeta;
442
+ export { wjFlexChartAnnotationImageMeta };
443
+ /**
444
+ * Angular 2 component for the {@link wijmo.chart.annotation.Image} class.
445
+ *
446
+ * The <b>wj-flex-chart-annotation-image</b> component must be
447
+ * contained in a {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer} component.
448
+ *
449
+ * Use the <b>wj-flex-chart-annotation-image</b> component to add <b>Image</b> controls to your
450
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
451
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
452
+ *
453
+ * The <b>WjFlexChartAnnotationImage</b> component is derived from the <b>Image</b> class and
454
+ * inherits all its properties, events and methods.
455
+ *
456
+ * The <b>wj-flex-chart-annotation-image</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartDataPoint} child component.
457
+ */
458
+ export declare class WjFlexChartAnnotationImage extends wjcChartAnnotation.Image implements OnInit, OnDestroy, AfterViewInit {
459
+ static readonly meta: IWjComponentMetadata;
460
+ private _wjBehaviour;
461
+ /**
462
+ * Indicates whether the component has been initialized by Angular.
463
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
464
+ */
465
+ isInitialized: boolean;
466
+ /**
467
+ * This event is triggered after the component has been initialized by Angular, that is
468
+ * all bound properties have been assigned and child components (if any) have been initialized.
469
+ */
470
+ initialized: EventEmitter<any>;
471
+ /**
472
+ * Gets or sets a name of a property that this component is assigned to.
473
+ * Default value is 'items'.
474
+ */
475
+ wjProperty: string;
476
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
477
+ /**
478
+ * If you create a custom component inherited from a Wijmo component, you can override this
479
+ * method and perform necessary initializations that you usually do in a class constructor.
480
+ * This method is called in the last line of a Wijmo component constructor and allows you
481
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
482
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
483
+ */
484
+ created(): void;
485
+ ngOnInit(): void;
486
+ ngAfterViewInit(): void;
487
+ ngOnDestroy(): void;
488
+ }
489
+ export declare class WjChartAnnotationModule {
490
+ }
package/index.js ADDED
@@ -0,0 +1,14 @@
1
+ /*!
2
+ *
3
+ * Wijmo Library 5.20232.939
4
+ * https://developer.mescius.com/wijmo
5
+ *
6
+ * Copyright(c) MESCIUS inc. All rights reserved.
7
+ *
8
+ * Licensed under the End-User License Agreement For MESCIUS Wijmo Software.
9
+ * us.sales@mescius.com
10
+ * https://developer.mescius.com/wijmo/licensing
11
+ *
12
+ */
13
+
14
+ "use strict";var __extends=this&&this.__extends||function(){var extendStatics=function(t,n){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,n){t.__proto__=n}||function(t,n){for(var e in n)n.hasOwnProperty(e)&&(t[e]=n[e])})(t,n)};return function(t,n){extendStatics(t,n);function __(){this.constructor=t}t.prototype=null===n?Object.create(n):(__.prototype=n.prototype,new __)}}(),__decorate=this&&this.__decorate||function(t,n,e,o){var a,r=arguments.length,i=r<3?n:null===o?o=Object.getOwnPropertyDescriptor(n,e):o;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)i=Reflect.decorate(t,n,e,o);else for(var l=t.length-1;l>=0;l--)(a=t[l])&&(i=(r<3?a(i):r>3?a(n,e,i):a(n,e))||i);return r>3&&i&&Object.defineProperty(n,e,i),i},__param=this&&this.__param||function(t,n){return function(e,o){n(e,o,t)}},__importStar=this&&this.__importStar||function(t){if(t&&t.__esModule)return t;var n={};if(null!=t)for(var e in t)Object.hasOwnProperty.call(t,e)&&(n[e]=t[e]);n.default=t;return n};Object.defineProperty(exports,"__esModule",{value:!0});var core_1=require("@angular/core"),common_1=require("@angular/common"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),wjcChartAnnotation=__importStar(require("@mescius/wijmo.chart.annotation")),wjFlexChartAnnotationLayerMeta={selector:"wj-flex-chart-annotation-layer",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationLayerMeta=wjFlexChartAnnotationLayerMeta;var WjFlexChartAnnotationLayer=function(t){__extends(WjFlexChartAnnotationLayer,t);function WjFlexChartAnnotationLayer(n,e,o){var a=t.call(this,o)||this;a.isInitialized=!1;a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationLayer;WjFlexChartAnnotationLayer.prototype.created=function(){};WjFlexChartAnnotationLayer.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationLayer.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationLayer.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationLayer.meta={outputs:wjFlexChartAnnotationLayerMeta.outputs};return WjFlexChartAnnotationLayer=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationLayerMeta.selector,template:wjFlexChartAnnotationLayerMeta.template,inputs:wjFlexChartAnnotationLayerMeta.inputs,outputs:wjFlexChartAnnotationLayerMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationLayerMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationLayer)}(wjcChartAnnotation.AnnotationLayer);exports.WjFlexChartAnnotationLayer=WjFlexChartAnnotationLayer;var wjFlexChartAnnotationTextMeta={selector:"wj-flex-chart-annotation-text",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationTextMeta=wjFlexChartAnnotationTextMeta;var WjFlexChartAnnotationText=function(t){__extends(WjFlexChartAnnotationText,t);function WjFlexChartAnnotationText(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationText;WjFlexChartAnnotationText.prototype.created=function(){};WjFlexChartAnnotationText.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationText.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationText.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationText.meta={outputs:wjFlexChartAnnotationTextMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationText=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationTextMeta.selector,template:wjFlexChartAnnotationTextMeta.template,inputs:wjFlexChartAnnotationTextMeta.inputs,outputs:wjFlexChartAnnotationTextMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationTextMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationText)}(wjcChartAnnotation.Text);exports.WjFlexChartAnnotationText=WjFlexChartAnnotationText;var wjFlexChartAnnotationEllipseMeta={selector:"wj-flex-chart-annotation-ellipse",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationEllipseMeta=wjFlexChartAnnotationEllipseMeta;var WjFlexChartAnnotationEllipse=function(t){__extends(WjFlexChartAnnotationEllipse,t);function WjFlexChartAnnotationEllipse(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationEllipse;WjFlexChartAnnotationEllipse.prototype.created=function(){};WjFlexChartAnnotationEllipse.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationEllipse.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationEllipse.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationEllipse.meta={outputs:wjFlexChartAnnotationEllipseMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationEllipse=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationEllipseMeta.selector,template:wjFlexChartAnnotationEllipseMeta.template,inputs:wjFlexChartAnnotationEllipseMeta.inputs,outputs:wjFlexChartAnnotationEllipseMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationEllipseMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationEllipse)}(wjcChartAnnotation.Ellipse);exports.WjFlexChartAnnotationEllipse=WjFlexChartAnnotationEllipse;var wjFlexChartAnnotationRectangleMeta={selector:"wj-flex-chart-annotation-rectangle",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationRectangleMeta=wjFlexChartAnnotationRectangleMeta;var WjFlexChartAnnotationRectangle=function(t){__extends(WjFlexChartAnnotationRectangle,t);function WjFlexChartAnnotationRectangle(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationRectangle;WjFlexChartAnnotationRectangle.prototype.created=function(){};WjFlexChartAnnotationRectangle.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationRectangle.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationRectangle.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationRectangle.meta={outputs:wjFlexChartAnnotationRectangleMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationRectangle=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationRectangleMeta.selector,template:wjFlexChartAnnotationRectangleMeta.template,inputs:wjFlexChartAnnotationRectangleMeta.inputs,outputs:wjFlexChartAnnotationRectangleMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationRectangleMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationRectangle)}(wjcChartAnnotation.Rectangle);exports.WjFlexChartAnnotationRectangle=WjFlexChartAnnotationRectangle;var wjFlexChartAnnotationLineMeta={selector:"wj-flex-chart-annotation-line",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationLineMeta=wjFlexChartAnnotationLineMeta;var WjFlexChartAnnotationLine=function(t){__extends(WjFlexChartAnnotationLine,t);function WjFlexChartAnnotationLine(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationLine;WjFlexChartAnnotationLine.prototype.created=function(){};WjFlexChartAnnotationLine.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationLine.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationLine.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationLine.meta={outputs:wjFlexChartAnnotationLineMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationLine=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationLineMeta.selector,template:wjFlexChartAnnotationLineMeta.template,inputs:wjFlexChartAnnotationLineMeta.inputs,outputs:wjFlexChartAnnotationLineMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationLineMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationLine)}(wjcChartAnnotation.Line);exports.WjFlexChartAnnotationLine=WjFlexChartAnnotationLine;var wjFlexChartAnnotationPolygonMeta={selector:"wj-flex-chart-annotation-polygon",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationPolygonMeta=wjFlexChartAnnotationPolygonMeta;var WjFlexChartAnnotationPolygon=function(t){__extends(WjFlexChartAnnotationPolygon,t);function WjFlexChartAnnotationPolygon(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationPolygon;WjFlexChartAnnotationPolygon.prototype.created=function(){};WjFlexChartAnnotationPolygon.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationPolygon.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationPolygon.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationPolygon.meta={outputs:wjFlexChartAnnotationPolygonMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationPolygon=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationPolygonMeta.selector,template:wjFlexChartAnnotationPolygonMeta.template,inputs:wjFlexChartAnnotationPolygonMeta.inputs,outputs:wjFlexChartAnnotationPolygonMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationPolygonMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationPolygon)}(wjcChartAnnotation.Polygon);exports.WjFlexChartAnnotationPolygon=WjFlexChartAnnotationPolygon;var wjFlexChartAnnotationCircleMeta={selector:"wj-flex-chart-annotation-circle",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationCircleMeta=wjFlexChartAnnotationCircleMeta;var WjFlexChartAnnotationCircle=function(t){__extends(WjFlexChartAnnotationCircle,t);function WjFlexChartAnnotationCircle(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationCircle;WjFlexChartAnnotationCircle.prototype.created=function(){};WjFlexChartAnnotationCircle.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationCircle.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationCircle.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationCircle.meta={outputs:wjFlexChartAnnotationCircleMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationCircle=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationCircleMeta.selector,template:wjFlexChartAnnotationCircleMeta.template,inputs:wjFlexChartAnnotationCircleMeta.inputs,outputs:wjFlexChartAnnotationCircleMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationCircleMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationCircle)}(wjcChartAnnotation.Circle);exports.WjFlexChartAnnotationCircle=WjFlexChartAnnotationCircle;var wjFlexChartAnnotationSquareMeta={selector:"wj-flex-chart-annotation-square",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationSquareMeta=wjFlexChartAnnotationSquareMeta;var WjFlexChartAnnotationSquare=function(t){__extends(WjFlexChartAnnotationSquare,t);function WjFlexChartAnnotationSquare(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationSquare;WjFlexChartAnnotationSquare.prototype.created=function(){};WjFlexChartAnnotationSquare.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationSquare.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationSquare.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationSquare.meta={outputs:wjFlexChartAnnotationSquareMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationSquare=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationSquareMeta.selector,template:wjFlexChartAnnotationSquareMeta.template,inputs:wjFlexChartAnnotationSquareMeta.inputs,outputs:wjFlexChartAnnotationSquareMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationSquareMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationSquare)}(wjcChartAnnotation.Square);exports.WjFlexChartAnnotationSquare=WjFlexChartAnnotationSquare;var wjFlexChartAnnotationImageMeta={selector:"wj-flex-chart-annotation-image",template:"<div><ng-content></ng-content></div>",inputs:["wjProperty","type","attachment","position","point","seriesIndex","pointIndex","offset","style","isVisible","tooltip","text","content","name","width","height","start","end","radius","length","href"],outputs:["initialized"],providers:[]};exports.wjFlexChartAnnotationImageMeta=wjFlexChartAnnotationImageMeta;var WjFlexChartAnnotationImage=function(t){__extends(WjFlexChartAnnotationImage,t);function WjFlexChartAnnotationImage(n,e,o){var a=t.call(this)||this;a.isInitialized=!1;a.wjProperty="items";a._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(a,n,e,o);a.created();return a}n=WjFlexChartAnnotationImage;WjFlexChartAnnotationImage.prototype.created=function(){};WjFlexChartAnnotationImage.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFlexChartAnnotationImage.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFlexChartAnnotationImage.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var n;WjFlexChartAnnotationImage.meta={outputs:wjFlexChartAnnotationImageMeta.outputs,siblingId:"annotation"};return WjFlexChartAnnotationImage=n=__decorate([core_1.Component({selector:wjFlexChartAnnotationImageMeta.selector,template:wjFlexChartAnnotationImageMeta.template,inputs:wjFlexChartAnnotationImageMeta.inputs,outputs:wjFlexChartAnnotationImageMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return n}))}].concat(wjFlexChartAnnotationImageMeta.providers)}),__param(0,core_1.Inject(core_1.ElementRef)),__param(1,core_1.Inject(core_1.Injector)),__param(2,core_1.Inject("WjComponent")),__param(2,core_1.SkipSelf()),__param(2,core_1.Optional())],WjFlexChartAnnotationImage)}(wjcChartAnnotation.Image);exports.WjFlexChartAnnotationImage=WjFlexChartAnnotationImage;var moduleExports=[WjFlexChartAnnotationLayer,WjFlexChartAnnotationText,WjFlexChartAnnotationEllipse,WjFlexChartAnnotationRectangle,WjFlexChartAnnotationLine,WjFlexChartAnnotationPolygon,WjFlexChartAnnotationCircle,WjFlexChartAnnotationSquare,WjFlexChartAnnotationImage],WjChartAnnotationModule=function(){function WjChartAnnotationModule(){}return WjChartAnnotationModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjChartAnnotationModule)}();exports.WjChartAnnotationModule=WjChartAnnotationModule;