/*! * * Wijmo Library 5.20251.40 * https://developer.mescius.com/wijmo * * Copyright(c) MESCIUS inc. All rights reserved. * * Licensed under the End-User License Agreement For MESCIUS Wijmo Software. * us.sales@mescius.com * https://developer.mescius.com/wijmo/licensing * */ /** * {@module wijmo.angular2.chart.analytics} * Contains Angular 2 components for the wijmo.chart.analytics module. * * wijmo.angular2.chart.analytics is an external TypeScript module that can be imported to your code * using its ambient module name. For example: * *
import * as wjAnalitics from 'wijmo/wijmo.angular2.chart.analytics';
* */ /** * */ export declare var ___keepComment: any; import { EventEmitter, AfterViewInit, ElementRef, Injector, OnInit, OnDestroy } from '@angular/core'; import { IWjComponentMetadata, IWjComponentMeta } from 'wijmo/wijmo.angular2.directiveBase'; import * as wjcChartAnalytics from 'wijmo/wijmo.chart.analytics'; declare var wjFlexChartTrendLineMeta: IWjComponentMeta; export { wjFlexChartTrendLineMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.TrendLine} class. * * The wj-flex-chart-trend-line component must be * contained in one of the following components: * {@link wijmo.angular2.chart.WjFlexChart} * or {@link wijmo.angular2.chart.finance.WjFinancialChart}. * * Use the wj-flex-chart-trend-line component to add TrendLine controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartTrendLine component is derived from the TrendLine class and * inherits all its properties, events and methods. */ export declare class WjFlexChartTrendLine extends wjcChartAnalytics.TrendLine implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } declare var wjFlexChartMovingAverageMeta: IWjComponentMeta; export { wjFlexChartMovingAverageMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.MovingAverage} class. * * The wj-flex-chart-moving-average component must be * contained in one of the following components: * {@link wijmo.angular2.chart.WjFlexChart} * or {@link wijmo.angular2.chart.finance.WjFinancialChart}. * * Use the wj-flex-chart-moving-average component to add MovingAverage controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartMovingAverage component is derived from the MovingAverage class and * inherits all its properties, events and methods. */ export declare class WjFlexChartMovingAverage extends wjcChartAnalytics.MovingAverage implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } declare var wjFlexChartYFunctionSeriesMeta: IWjComponentMeta; export { wjFlexChartYFunctionSeriesMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.YFunctionSeries} class. * * The wj-flex-chart-y-function-series component must be * contained in one of the following components: * {@link wijmo.angular2.chart.WjFlexChart} * or {@link wijmo.angular2.chart.finance.WjFinancialChart}. * * Use the wj-flex-chart-y-function-series component to add YFunctionSeries controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartYFunctionSeries component is derived from the YFunctionSeries class and * inherits all its properties, events and methods. */ export declare class WjFlexChartYFunctionSeries extends wjcChartAnalytics.YFunctionSeries implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } declare var wjFlexChartParametricFunctionSeriesMeta: IWjComponentMeta; export { wjFlexChartParametricFunctionSeriesMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.ParametricFunctionSeries} class. * * The wj-flex-chart-parametric-function-series component must be * contained in one of the following components: * {@link wijmo.angular2.chart.WjFlexChart} * or {@link wijmo.angular2.chart.finance.WjFinancialChart}. * * Use the wj-flex-chart-parametric-function-series component to add ParametricFunctionSeries controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartParametricFunctionSeries component is derived from the ParametricFunctionSeries class and * inherits all its properties, events and methods. */ export declare class WjFlexChartParametricFunctionSeries extends wjcChartAnalytics.ParametricFunctionSeries implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } declare var wjFlexChartWaterfallMeta: IWjComponentMeta; export { wjFlexChartWaterfallMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.Waterfall} class. * * The wj-flex-chart-waterfall component must be * contained in one of the following components: * {@link wijmo.angular2.chart.WjFlexChart} * or {@link wijmo.angular2.chart.finance.WjFinancialChart}. * * Use the wj-flex-chart-waterfall component to add Waterfall controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartWaterfall component is derived from the Waterfall class and * inherits all its properties, events and methods. */ export declare class WjFlexChartWaterfall extends wjcChartAnalytics.Waterfall implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } declare var wjFlexChartBoxWhiskerMeta: IWjComponentMeta; export { wjFlexChartBoxWhiskerMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.BoxWhisker} class. * * The wj-flex-chart-box-whisker component must be * contained in one of the following components: * {@link wijmo.angular2.chart.WjFlexChart} * or {@link wijmo.angular2.chart.finance.WjFinancialChart}. * * Use the wj-flex-chart-box-whisker component to add BoxWhisker controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartBoxWhisker component is derived from the BoxWhisker class and * inherits all its properties, events and methods. */ export declare class WjFlexChartBoxWhisker extends wjcChartAnalytics.BoxWhisker implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } declare var wjFlexChartErrorBarMeta: IWjComponentMeta; export { wjFlexChartErrorBarMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.ErrorBar} class. * * The wj-flex-chart-error-bar component must be * contained in a {@link wijmo.angular2.chart.WjFlexChart} component. * * Use the wj-flex-chart-error-bar component to add ErrorBar controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartErrorBar component is derived from the ErrorBar class and * inherits all its properties, events and methods. */ export declare class WjFlexChartErrorBar extends wjcChartAnalytics.ErrorBar implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } declare var wjFlexChartBreakEvenMeta: IWjComponentMeta; export { wjFlexChartBreakEvenMeta }; /** * Angular 2 component for the {@link wijmo.chart.analytics.BreakEven} class. * * The wj-flex-chart-break-even component must be * contained in a {@link wijmo.angular2.chart.WjFlexChart} component. * * Use the wj-flex-chart-break-even component to add BreakEven controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartBreakEven component is derived from the BreakEven class and * inherits all its properties, events and methods. */ export declare class WjFlexChartBreakEven extends wjcChartAnalytics.BreakEven implements OnInit, OnDestroy, AfterViewInit { static readonly meta: IWjComponentMetadata; private _wjBehaviour; /** * Indicates whether the component has been initialized by Angular. * Changes its value from false to true right before triggering the initialized event. */ isInitialized: boolean; /** * This event is triggered after the component has been initialized by Angular, that is * all bound properties have been assigned and child components (if any) have been initialized. */ initialized: EventEmitter; /** * Gets or sets a name of a property that this component is assigned to. * Default value is 'series'. */ wjProperty: string; /** * Allows you to override the global WjOptions.asyncBindings setting for this specific component. * See the WjOptions.{@link WjOptions.asyncBindings} property description for details. */ asyncBindings: boolean; /** * Angular (EventEmitter) version of the Wijmo rendering event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendering Wijmo event name. */ renderingNg: EventEmitter; /** * Angular (EventEmitter) version of the Wijmo rendered event for programmatic access. * Use this event name if you want to subscribe to the Angular version of the event in code. * In template bindings use the conventional rendered Wijmo event name. */ renderedNg: EventEmitter; /** * This event is used to implement two-way binding to the visibility property. * It's triggered when the property value changes, with the event argument holding the new property value. * You can bind handlers to this event in templates using the visibilityChange event name. */ visibilityChangePC: EventEmitter; constructor(elRef: ElementRef, injector: Injector, parentCmp: any); /** * If you create a custom component inherited from a Wijmo component, you can override this * method and perform necessary initializations that you usually do in a class constructor. * This method is called in the last line of a Wijmo component constructor and allows you * to not declare your custom component's constructor at all, thus preventing you from a necessity * to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters. */ created(): void; ngOnInit(): void; ngAfterViewInit(): void; ngOnDestroy(): void; } export declare class WjChartAnalyticsModule { }