@mescius/wijmo.angular2legacy.chart.finance 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,267 @@
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.finance}
15
+ * Contains Angular 2 components for the <b>wijmo.chart.finance</b> module.
16
+ *
17
+ * <b>wijmo.angular2legacy.chart.finance</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 wjFinance from 'wijmo/wijmo.angular2legacy.chart.finance';
21
+ * &nbsp;
22
+ * &#64;Component({
23
+ * directives: [wjFinance.WjFinancialChart, wjFinance.WjFinancialChartSeries],
24
+ * template: `
25
+ * &lt;wj-financial-chart [itemsSource]="data" [bindingX]="'x'"&gt;
26
+ * &lt;wj-financial-chart-series [binding]="'y'"&gt;&lt;/wj-financial-chart-series&gt;
27
+ * &lt;/wj-financial-chart&gt;`,
28
+ * selector: 'my-cmp',
29
+ * })
30
+ * export class MyCmp {
31
+ * data: any[];
32
+ * }</pre>
33
+ *
34
+ */
35
+ /**
36
+ *
37
+ */
38
+ export declare var ___keepComment: any;
39
+ import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core';
40
+ import { IWjComponentMetadata, IWjComponentMeta } from '@grapecity/wijmo.angular2legacy.directivebase';
41
+ import * as wjcChartFinance from '@grapecity/wijmo.chart.finance';
42
+ declare var wjFinancialChartMeta: IWjComponentMeta;
43
+ export { wjFinancialChartMeta };
44
+ /**
45
+ * Angular 2 component for the {@link wijmo.chart.finance.FinancialChart} control.
46
+ *
47
+ * Use the <b>wj-financial-chart</b> component to add <b>FinancialChart</b> controls to your
48
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
49
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
50
+ *
51
+ * The <b>WjFinancialChart</b> component is derived from the <b>FinancialChart</b> control and
52
+ * inherits all its properties, events and methods.
53
+ *
54
+ * The <b>wj-financial-chart</b> component may contain the following child components:
55
+ * {@link wijmo.angular2legacy.chart.analytics.WjFlexChartTrendLine}
56
+ * , {@link wijmo.angular2legacy.chart.analytics.WjFlexChartMovingAverage}
57
+ * , {@link wijmo.angular2legacy.chart.analytics.WjFlexChartYFunctionSeries}
58
+ * , {@link wijmo.angular2legacy.chart.analytics.WjFlexChartParametricFunctionSeries}
59
+ * , {@link wijmo.angular2legacy.chart.analytics.WjFlexChartWaterfall}
60
+ * , {@link wijmo.angular2legacy.chart.analytics.WjFlexChartBoxWhisker}
61
+ * , {@link wijmo.angular2legacy.chart.animation.WjFlexChartAnimation}
62
+ * , {@link wijmo.angular2legacy.chart.annotation.WjFlexChartAnnotationLayer}
63
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartFibonacci}
64
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartFibonacciArcs}
65
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartFibonacciFans}
66
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartFibonacciTimeZones}
67
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartAtr}
68
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartCci}
69
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartRsi}
70
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartWilliamsR}
71
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartMacd}
72
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartMacdHistogram}
73
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartStochastic}
74
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartBollingerBands}
75
+ * , {@link wijmo.angular2legacy.chart.finance.analytics.WjFlexChartEnvelopes}
76
+ * , {@link wijmo.angular2legacy.chart.finance.WjFinancialChartSeries}
77
+ * , {@link wijmo.angular2legacy.chart.interaction.WjFlexChartRangeSelector}
78
+ * , {@link wijmo.angular2legacy.chart.interaction.WjFlexChartGestures}
79
+ * , {@link wijmo.angular2legacy.chart.WjFlexChartAxis}
80
+ * , {@link wijmo.angular2legacy.chart.WjFlexChartLegend}
81
+ * , {@link wijmo.angular2legacy.chart.WjFlexChartLineMarker}
82
+ * and {@link wijmo.angular2legacy.chart.WjFlexChartPlotArea}.
83
+ */
84
+ export declare class WjFinancialChart extends wjcChartFinance.FinancialChart implements OnInit, OnDestroy, AfterViewInit {
85
+ static readonly meta: IWjComponentMetadata;
86
+ private _wjBehaviour;
87
+ /**
88
+ * Indicates whether the component has been initialized by Angular.
89
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
90
+ */
91
+ isInitialized: boolean;
92
+ /**
93
+ * This event is triggered after the component has been initialized by Angular, that is
94
+ * all bound properties have been assigned and child components (if any) have been initialized.
95
+ */
96
+ initialized: EventEmitter<any>;
97
+ /**
98
+ * Defines a name of a property represented by [(ngModel)] directive (if specified).
99
+ * Default value is ''.
100
+ */
101
+ wjModelProperty: string;
102
+ /**
103
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
104
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
105
+ */
106
+ asyncBindings: boolean;
107
+ /**
108
+ * Angular (EventEmitter) version of the Wijmo <b>gotFocus</b> event for programmatic access.
109
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
110
+ * In template bindings use the conventional <b>gotFocus</b> Wijmo event name.
111
+ */
112
+ gotFocusNg: EventEmitter<any>;
113
+ /**
114
+ * Angular (EventEmitter) version of the Wijmo <b>lostFocus</b> event for programmatic access.
115
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
116
+ * In template bindings use the conventional <b>lostFocus</b> Wijmo event name.
117
+ */
118
+ lostFocusNg: EventEmitter<any>;
119
+ /**
120
+ * Angular (EventEmitter) version of the Wijmo <b>refreshing</b> event for programmatic access.
121
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
122
+ * In template bindings use the conventional <b>refreshing</b> Wijmo event name.
123
+ */
124
+ refreshingNg: EventEmitter<any>;
125
+ /**
126
+ * Angular (EventEmitter) version of the Wijmo <b>refreshed</b> event for programmatic access.
127
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
128
+ * In template bindings use the conventional <b>refreshed</b> Wijmo event name.
129
+ */
130
+ refreshedNg: EventEmitter<any>;
131
+ /**
132
+ * Angular (EventEmitter) version of the Wijmo <b>invalidInput</b> event for programmatic access.
133
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
134
+ * In template bindings use the conventional <b>invalidInput</b> Wijmo event name.
135
+ */
136
+ invalidInputNg: EventEmitter<any>;
137
+ /**
138
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
139
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
140
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
141
+ */
142
+ renderingNg: EventEmitter<any>;
143
+ /**
144
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
145
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
146
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
147
+ */
148
+ renderedNg: EventEmitter<any>;
149
+ /**
150
+ * Angular (EventEmitter) version of the Wijmo <b>selectionChanged</b> event for programmatic access.
151
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
152
+ * In template bindings use the conventional <b>selectionChanged</b> Wijmo event name.
153
+ */
154
+ selectionChangedNg: EventEmitter<any>;
155
+ /**
156
+ * This event is used to implement two-way binding to the <b>selection</b> property.
157
+ * It's triggered when the property value changes, with the event argument holding the new property value.
158
+ * You can bind handlers to this event in templates using the <b>selectionChange</b> event name.
159
+ */
160
+ selectionChangePC: EventEmitter<any>;
161
+ /**
162
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanging</b> event for programmatic access.
163
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
164
+ * In template bindings use the conventional <b>itemsSourceChanging</b> Wijmo event name.
165
+ */
166
+ itemsSourceChangingNg: EventEmitter<any>;
167
+ /**
168
+ * Angular (EventEmitter) version of the Wijmo <b>itemsSourceChanged</b> event for programmatic access.
169
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
170
+ * In template bindings use the conventional <b>itemsSourceChanged</b> Wijmo event name.
171
+ */
172
+ itemsSourceChangedNg: EventEmitter<any>;
173
+ /**
174
+ * Angular (EventEmitter) version of the Wijmo <b>seriesVisibilityChanged</b> event for programmatic access.
175
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
176
+ * In template bindings use the conventional <b>seriesVisibilityChanged</b> Wijmo event name.
177
+ */
178
+ seriesVisibilityChangedNg: EventEmitter<any>;
179
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
180
+ /**
181
+ * If you create a custom component inherited from a Wijmo component, you can override this
182
+ * method and perform necessary initializations that you usually do in a class constructor.
183
+ * This method is called in the last line of a Wijmo component constructor and allows you
184
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
185
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
186
+ */
187
+ created(): void;
188
+ ngOnInit(): void;
189
+ ngAfterViewInit(): void;
190
+ ngOnDestroy(): void;
191
+ addEventListener(target: EventTarget, type: string, fn: any, capture?: boolean): void;
192
+ tooltipContent: any;
193
+ labelContent: any;
194
+ }
195
+ declare var wjFinancialChartSeriesMeta: IWjComponentMeta;
196
+ export { wjFinancialChartSeriesMeta };
197
+ /**
198
+ * Angular 2 component for the {@link wijmo.chart.finance.FinancialSeries} class.
199
+ *
200
+ * The <b>wj-financial-chart-series</b> component must be
201
+ * contained in a {@link wijmo.angular2legacy.chart.finance.WjFinancialChart} component.
202
+ *
203
+ * Use the <b>wj-financial-chart-series</b> component to add <b>FinancialSeries</b> controls to your
204
+ * Angular 2 applications. For details about Angular 2 markup syntax, see
205
+ * <a href="/wijmo/docs/GettingStarted/Angular-Components">Angular 2 Markup</a>.
206
+ *
207
+ * The <b>WjFinancialChartSeries</b> component is derived from the <b>FinancialSeries</b> class and
208
+ * inherits all its properties, events and methods.
209
+ *
210
+ * The <b>wj-financial-chart-series</b> component may contain a {@link wijmo.angular2legacy.chart.WjFlexChartAxis} child component.
211
+ */
212
+ export declare class WjFinancialChartSeries extends wjcChartFinance.FinancialSeries implements OnInit, OnDestroy, AfterViewInit {
213
+ static readonly meta: IWjComponentMetadata;
214
+ private _wjBehaviour;
215
+ /**
216
+ * Indicates whether the component has been initialized by Angular.
217
+ * Changes its value from false to true right before triggering the <b>initialized</b> event.
218
+ */
219
+ isInitialized: boolean;
220
+ /**
221
+ * This event is triggered after the component has been initialized by Angular, that is
222
+ * all bound properties have been assigned and child components (if any) have been initialized.
223
+ */
224
+ initialized: EventEmitter<any>;
225
+ /**
226
+ * Gets or sets a name of a property that this component is assigned to.
227
+ * Default value is 'series'.
228
+ */
229
+ wjProperty: string;
230
+ /**
231
+ * Allows you to override the global <b>WjOptions.asyncBindings</b> setting for this specific component.
232
+ * See the <b>WjOptions.</b>{@link WjOptions.asyncBindings} property description for details.
233
+ */
234
+ asyncBindings: boolean;
235
+ /**
236
+ * Angular (EventEmitter) version of the Wijmo <b>rendering</b> event for programmatic access.
237
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
238
+ * In template bindings use the conventional <b>rendering</b> Wijmo event name.
239
+ */
240
+ renderingNg: EventEmitter<any>;
241
+ /**
242
+ * Angular (EventEmitter) version of the Wijmo <b>rendered</b> event for programmatic access.
243
+ * Use this event name if you want to subscribe to the Angular version of the event in code.
244
+ * In template bindings use the conventional <b>rendered</b> Wijmo event name.
245
+ */
246
+ renderedNg: EventEmitter<any>;
247
+ /**
248
+ * This event is used to implement two-way binding to the <b>visibility</b> property.
249
+ * It's triggered when the property value changes, with the event argument holding the new property value.
250
+ * You can bind handlers to this event in templates using the <b>visibilityChange</b> event name.
251
+ */
252
+ visibilityChangePC: EventEmitter<any>;
253
+ constructor(elRef: ElementRef, injector: Injector, parentCmp: any);
254
+ /**
255
+ * If you create a custom component inherited from a Wijmo component, you can override this
256
+ * method and perform necessary initializations that you usually do in a class constructor.
257
+ * This method is called in the last line of a Wijmo component constructor and allows you
258
+ * to not declare your custom component's constructor at all, thus preventing you from a necessity
259
+ * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
260
+ */
261
+ created(): void;
262
+ ngOnInit(): void;
263
+ ngAfterViewInit(): void;
264
+ ngOnDestroy(): void;
265
+ }
266
+ export declare class WjChartFinanceModule {
267
+ }
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(e,t){return(extendStatics=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)t.hasOwnProperty(n)&&(e[n]=t[n])})(e,t)};return function(e,t){extendStatics(e,t);function __(){this.constructor=e}e.prototype=null===t?Object.create(t):(__.prototype=t.prototype,new __)}}(),__decorate=this&&this.__decorate||function(e,t,n,i){var r,a=arguments.length,o=a<3?t:null===i?i=Object.getOwnPropertyDescriptor(t,n):i;if("object"==typeof Reflect&&"function"==typeof Reflect.decorate)o=Reflect.decorate(e,t,n,i);else for(var c=e.length-1;c>=0;c--)(r=e[c])&&(o=(a<3?r(o):a>3?r(t,n,o):r(t,n))||o);return a>3&&o&&Object.defineProperty(t,n,o),o},__param=this&&this.__param||function(e,t){return function(n,i){t(n,i,e)}},__importStar=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)Object.hasOwnProperty.call(e,n)&&(t[n]=e[n]);t.default=e;return t};Object.defineProperty(exports,"__esModule",{value:!0});var core_1=require("@angular/core"),common_1=require("@angular/common"),forms_1=require("@angular/forms"),wijmo.angular2legacy_directivebase_1=require("@mescius/wijmo.angular2legacy.directivebase"),wjcChartFinance=__importStar(require("@mescius/wijmo.chart.finance")),wjFinancialChartMeta={selector:"wj-financial-chart",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjModelProperty","renderEngine","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingX","interpolateNulls","legendToggle","symbolSize","options","selection","itemFormatter","labelContent","chartType"],outputs:["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","selectionChangePC: selectionChange","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged","seriesVisibilityChangedNg: seriesVisibilityChanged"],providers:[{provide:forms_1.NG_VALUE_ACCESSOR,useFactory:wijmo.angular2legacy_directivebase_1.WjValueAccessorFactory,multi:!0,deps:["WjComponent"]}]};exports.wjFinancialChartMeta=wjFinancialChartMeta;var WjFinancialChart=function(e){__extends(WjFinancialChart,e);function WjFinancialChart(t,n,i){var r=e.call(this,wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.getHostElement(t,n))||this;r.isInitialized=!1;r._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(r,t,n,i);r.created();return r}t=WjFinancialChart;WjFinancialChart.prototype.created=function(){};WjFinancialChart.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFinancialChart.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFinancialChart.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};WjFinancialChart.prototype.addEventListener=function(t,n,i,r){var a=this;void 0===r&&(r=!1);var o=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior,c=o.getZone(this);c&&o.outsideZoneEvents[n]?c.runOutsideAngular((function(){e.prototype.addEventListener.call(a,t,n,i,r)})):e.prototype.addEventListener.call(this,t,n,i,r)};Object.defineProperty(WjFinancialChart.prototype,"tooltipContent",{get:function(){return this.tooltip.content},set:function(e){this.tooltip.content=e},enumerable:!0,configurable:!0});Object.defineProperty(WjFinancialChart.prototype,"labelContent",{get:function(){return this.dataLabel.content},set:function(e){this.dataLabel.content=e},enumerable:!0,configurable:!0});var t;WjFinancialChart.meta={outputs:wjFinancialChartMeta.outputs,changeEvents:{selectionChanged:["selection"]}};return WjFinancialChart=t=__decorate([core_1.Component({selector:wjFinancialChartMeta.selector,template:wjFinancialChartMeta.template,inputs:wjFinancialChartMeta.inputs,outputs:wjFinancialChartMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFinancialChartMeta.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())],WjFinancialChart)}(wjcChartFinance.FinancialChart);exports.WjFinancialChart=WjFinancialChart;var wjFinancialChartSeriesMeta={selector:"wj-financial-chart-series",template:"<div><ng-content></ng-content></div>",inputs:["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","chartType"],outputs:["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],providers:[]};exports.wjFinancialChartSeriesMeta=wjFinancialChartSeriesMeta;var WjFinancialChartSeries=function(e){__extends(WjFinancialChartSeries,e);function WjFinancialChartSeries(t,n,i){var r=e.call(this)||this;r.isInitialized=!1;r.wjProperty="series";r._wjBehaviour=wijmo.angular2legacy_directivebase_1.WjDirectiveBehavior.attach(r,t,n,i);r.created();return r}t=WjFinancialChartSeries;WjFinancialChartSeries.prototype.created=function(){};WjFinancialChartSeries.prototype.ngOnInit=function(){this._wjBehaviour.ngOnInit()};WjFinancialChartSeries.prototype.ngAfterViewInit=function(){this._wjBehaviour.ngAfterViewInit()};WjFinancialChartSeries.prototype.ngOnDestroy=function(){this._wjBehaviour.ngOnDestroy()};var t;WjFinancialChartSeries.meta={outputs:wjFinancialChartSeriesMeta.outputs,changeEvents:{"chart.seriesVisibilityChanged":["visibility"]},siblingId:"series"};return WjFinancialChartSeries=t=__decorate([core_1.Component({selector:wjFinancialChartSeriesMeta.selector,template:wjFinancialChartSeriesMeta.template,inputs:wjFinancialChartSeriesMeta.inputs,outputs:wjFinancialChartSeriesMeta.outputs,providers:[{provide:"WjComponent",useExisting:core_1.forwardRef((function(){return t}))}].concat(wjFinancialChartSeriesMeta.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())],WjFinancialChartSeries)}(wjcChartFinance.FinancialSeries);exports.WjFinancialChartSeries=WjFinancialChartSeries;var moduleExports=[WjFinancialChart,WjFinancialChartSeries],WjChartFinanceModule=function(){function WjChartFinanceModule(){}return WjChartFinanceModule=__decorate([core_1.NgModule({imports:[common_1.CommonModule],declarations:moduleExports.slice(),exports:moduleExports.slice()})],WjChartFinanceModule)}();exports.WjChartFinanceModule=WjChartFinanceModule;
@@ -0,0 +1 @@
1
+ [{"__symbolic":"module","version":3,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":38,"character":19},"wjFinancialChartMeta":{"selector":"wj-financial-chart","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","renderEngine","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingX","interpolateNulls","legendToggle","symbolSize","options","selection","itemFormatter","labelContent","chartType"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","selectionChangePC: selectionChange","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged","seriesVisibilityChangedNg: seriesVisibilityChanged"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjFinancialChart":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.finance","name":"FinancialChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjFinancialChart"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"outputs"},"changeEvents":{"selectionChanged":["selection"],"$quoted$":["selectionChanged"]}}}},"wjFinancialChartSeriesMeta":{"selector":"wj-financial-chart-series","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","chartType"],"outputs":["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],"providers":[]},"WjFinancialChartSeries":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.finance","name":"FinancialSeries"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjFinancialChartSeries"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"outputs"},"changeEvents":{"chart.seriesVisibilityChanged":["visibility"],"$quoted$":["chart.seriesVisibilityChanged"]},"siblingId":"series"}}},"WjChartFinanceModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjFinancialChart"},{"__symbolic":"reference","name":"WjFinancialChartSeries"}],"exports":[{"__symbolic":"reference","name":"WjFinancialChart"},{"__symbolic":"reference","name":"WjFinancialChartSeries"}]}]}]}}},{"__symbolic":"module","version":1,"metadata":{"___keepComment":{"__symbolic":"error","message":"Variable not initialized","line":38,"character":19},"wjFinancialChartMeta":{"selector":"wj-financial-chart","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjModelProperty","renderEngine","isDisabled","tabOrder","binding","footer","header","selectionMode","palette","plotMargin","footerStyle","headerStyle","tooltipContent","itemsSource","bindingX","interpolateNulls","legendToggle","symbolSize","options","selection","itemFormatter","labelContent","chartType"],"outputs":["initialized","gotFocusNg: gotFocus","lostFocusNg: lostFocus","refreshingNg: refreshing","refreshedNg: refreshed","invalidInputNg: invalidInput","renderingNg: rendering","renderedNg: rendered","selectionChangedNg: selectionChanged","selectionChangePC: selectionChange","itemsSourceChangingNg: itemsSourceChanging","itemsSourceChangedNg: itemsSourceChanged","seriesVisibilityChangedNg: seriesVisibilityChanged"],"providers":[{"provide":{"__symbolic":"reference","module":"@angular/forms","name":"NG_VALUE_ACCESSOR"},"useFactory":{"__symbolic":"reference","module":"@mescius/wijmo.angular2legacy.directivebase","name":"WjValueAccessorFactory"},"multi":true,"deps":["WjComponent"]}]},"WjFinancialChart":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.finance","name":"FinancialChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjFinancialChart"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}],"addEventListener":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartMeta"},"member":"outputs"},"changeEvents":{"selectionChanged":["selection"]}}}},"wjFinancialChartSeriesMeta":{"selector":"wj-financial-chart-series","template":"<div><ng-content></ng-content></div>","inputs":["asyncBindings","wjProperty","axisX","axisY","binding","bindingX","cssClass","name","style","altStyle","symbolMarker","symbolSize","symbolStyle","visibility","itemsSource","interpolateNulls","tooltipContent","itemFormatter","chartType"],"outputs":["initialized","renderingNg: rendering","renderedNg: rendered","visibilityChangePC: visibilityChange"],"providers":[]},"WjFinancialChartSeries":{"__symbolic":"class","extends":{"__symbolic":"reference","module":"@mescius/wijmo.chart.finance","name":"FinancialSeries"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component"},"arguments":[{"selector":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"selector"},"template":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"template"},"inputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"inputs"},"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"outputs"},"providers":[{"provide":"WjComponent","useExisting":{"__symbolic":"reference","name":"WjFinancialChartSeries"}},{"__symbolic":"spread","expression":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"providers"}}]}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameterDecorators":[[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":[{"__symbolic":"reference","module":"@angular/core","name":"Injector"}]}],[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Inject"},"arguments":["WjComponent"]},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"SkipSelf"}},{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Optional"}}]],"parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef"},{"__symbolic":"reference","module":"@angular/core","name":"Injector"},{"__symbolic":"reference","name":"any"}]}],"created":[{"__symbolic":"method"}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}],"ngOnDestroy":[{"__symbolic":"method"}]},"statics":{"meta":{"outputs":{"__symbolic":"select","expression":{"__symbolic":"reference","name":"wjFinancialChartSeriesMeta"},"member":"outputs"},"changeEvents":{"chart.seriesVisibilityChanged":["visibility"]},"siblingId":"series"}}},"WjChartFinanceModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule"},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule"}],"declarations":[{"__symbolic":"reference","name":"WjFinancialChart"},{"__symbolic":"reference","name":"WjFinancialChartSeries"}],"exports":[{"__symbolic":"reference","name":"WjFinancialChart"},{"__symbolic":"reference","name":"WjFinancialChartSeries"}]}]}]}}}]
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@mescius/wijmo.angular2legacy.chart.finance",
3
+ "version": "5.20232.939",
4
+ "description": "UI library for pure JS, Angular, React, Vue and more...",
5
+ "author": "MESCIUS inc",
6
+ "license": "Commercial",
7
+ "main": "./index.js",
8
+ "types": "./index.d.ts",
9
+ "dependencies": {
10
+ "@mescius/wijmo": "5.20232.939",
11
+ "@mescius/wijmo.chart.finance": "5.20232.939",
12
+ "@mescius/wijmo.angular2legacy.directivebase": "5.20232.939"
13
+ },
14
+ "homepage": "https://developer.mescius.com/wijmo",
15
+ "bugs": {
16
+ "url": "https://developer.mescius.com/forums/wijmo"
17
+ },
18
+ "keywords": [
19
+ "control",
20
+ "component",
21
+ "ui",
22
+ "control library",
23
+ "component library",
24
+ "ui library",
25
+ "control-library",
26
+ "component-library",
27
+ "ui-library",
28
+ "grid",
29
+ "data grid",
30
+ "data-grid",
31
+ "datagrid",
32
+ "angular grid",
33
+ "react grid",
34
+ "vue grid",
35
+ "angular-grid",
36
+ "react-grid",
37
+ "vue-grid"
38
+ ],
39
+ "module": "./es5-esm.js",
40
+ "esm5": "./es5-esm.js",
41
+ "wj-esm5": "./es5-esm.js",
42
+ "es2015Cjs": "./es2015-commonjs.js",
43
+ "wj-es2015Cjs": "./es2015-commonjs.js",
44
+ "esm2015": "./es2015-esm.js",
45
+ "wj-esm2015": "./es2015-esm.js"
46
+ }