@covalent/charts
Version:
Teradata UI Platform Charts Module
19 lines (18 loc) • 645 B
TypeScript
import { PlatformLocation } from '@angular/common';
import { TdChartsComponent } from '../charts.component';
import { ChartComponent, IChartData } from '../abstract-chart.component';
export declare class TdChartLineComponent extends ChartComponent {
private _platformLocation;
dataSrc: string;
data: IChartData[];
bottomAxis: string;
transition: boolean;
transitionDuration: number;
transitionDelay: number;
columns: string[];
colors: string[];
titles: string[];
timeSeries: boolean;
constructor(parent: TdChartsComponent, _platformLocation: PlatformLocation);
renderChart(data: any): void;
}