import { ThfChartBaseComponent } from '@totvs/thf-core/components/thf-chart-base'; /** * @extends ThfChartBaseComponent * @description * * Para o correto funcionamento do THF Chart deve ser importado o módulo ```BrowserAnimationsModule``` no módulo principal da sua aplicação. * * > Módulo da sua aplicação: * * * ``` * import { BrowserAnimationsModule } from '@angular/platform-browser/animations'; * * ... * * @NgModule({ * imports: [ * BrowserModule, * BrowserAnimationsModule, * ... * ThfModule, * ... * ], * declarations: [ * AppComponent * ], * providers: [], * bootstrap: [AppComponent] * }) * export class AppModule { } * ``` * * No arquivo```angular-cli.json``` da sua aplicação você deve importar o arquivo ```all.css```, que pertence ao * pacote ```@progress/kendo-theme-default```. * * * > Arquivo .angular-cli.json: * * * ``` * ... * * "styles": [ * "../node_modules/@progress/kendo-theme-default/dist/all.css" * ] * * ... * ``` * @example * * * * */ export declare class ThfChartComponent extends ThfChartBaseComponent { label: Object; getSeriesColor(): string[]; }