/*! * * 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.animation} * Contains Angular 2 components for the wijmo.chart.animation module. * * wijmo.angular2.chart.animation is an external TypeScript module that can be imported to your code * using its ambient module name. For example: * *
import * as wjAnimation from 'wijmo/wijmo.angular2.chart.animation';
* import * as wjChart from 'wijmo/wijmo.angular2.chart';
*  
* @Component({
*     directives: [wjChart.WjFlexChart, wjAnimation.WjFlexChartAnimation, wjChart.WjFlexChartSeries],
*     template: `
*       <wj-flex-chart [itemsSource]="data" [bindingX]="'x'">
*           <wj-flex-chart-animation [animationMode]="'Point'"></wj-flex-chart-animation>
*           <wj-flex-chart-series [binding]="'y'"></wj-flex-chart-series>
*       </wj-flex-chart>`,
*     selector: 'my-cmp',
* })
* export class MyCmp {
*     data: any[];
* }
* */ /** * */ 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 wjcChartAnimation from 'wijmo/wijmo.chart.animation'; declare var wjFlexChartAnimationMeta: IWjComponentMeta; export { wjFlexChartAnimationMeta }; /** * Angular 2 component for the {@link wijmo.chart.animation.ChartAnimation} class. * * The wj-flex-chart-animation component must be * contained in one of the following components: * {@link wijmo.angular2.chart.WjFlexChart} * , {@link wijmo.angular2.chart.WjFlexPie} * , {@link wijmo.angular2.chart.finance.WjFinancialChart} * or {@link wijmo.angular2.chart.radar.WjFlexRadar}. * * Use the wj-flex-chart-animation component to add ChartAnimation controls to your * Angular 2 applications. For details about Angular 2 markup syntax, see * Angular 2 Markup. * * The WjFlexChartAnimation component is derived from the ChartAnimation class and * inherits all its properties, events and methods. */ export declare class WjFlexChartAnimation extends wjcChartAnimation.ChartAnimation 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 ''. */ wjProperty: string; 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 WjChartAnimationModule { }