import { Component, Input, ElementRef, Output, EventEmitter, OnChanges } from '@angular/core';
import { BaseChart, IDevChartSerieItem } from "./baseChart";
import { Portlet } from "../../portlet/portlet";
@Component({
selector: 'rd-polar-chart',
template: `
`
})
export class PolarChart extends BaseChart implements OnChanges {
@Input("rd-title") title: string;
@Input("rd-type") type: string = "line" // line, area, scatter
@Input("rd-argument-field") argumentField: string;
@Input("rd-series") series: Array = [{ valueField: '', name: '' }];
@Input("rd-data") data: Array