igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
41 lines (40 loc) • 979 B
JavaScript
import { IgrPolarLineSeriesBase } from "./igr-polar-line-series-base";
import { PolarSplineAreaSeries } from "./PolarSplineAreaSeries";
/**
* Represents a IgxDataChartComponent polar spline area series.
*/
export class IgrPolarSplineAreaSeries extends IgrPolarLineSeriesBase {
createImplementation() {
return new PolarSplineAreaSeries();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
/**
* Gets whether the current series shows an area shape.
*/
get isArea() {
return this.i.ew;
}
/**
* Gets whether the current series shows a spline shape.
*/
get isSpline() {
return this.i.f1;
}
/**
* Gets or sets the Stiffness property.
*/
get stiffness() {
return this.i.ac6;
}
set stiffness(v) {
this.i.ac6 = +v;
}
}