import { Component, Input, ElementRef, Output, EventEmitter, OnChanges } from '@angular/core';
import { RdLib } from '../../../base/rdLib';
import { BaseChart, IDevChartSerieItem } from "./baseChart";
import { Portlet } from "../../portlet/portlet";
@Component({
selector: 'rd-area-chart',
template: `
`
})
export class AreaChart extends BaseChart implements OnChanges {
@Input("rd-title") title: string;
@Input("rd-type") type: string = "splinearea";
@Input("rd-data") data: Array