UNPKG

igniteui-react-charts

Version:

Ignite UI React charting components for building rich data visualizations using TypeScript APIs.

16 lines (15 loc) 411 B
import { IgrPolarBase } from "./igr-polar-base"; /** * Represents the base class from which all IgxDataChartComponent polar line series are derived. */ export class IgrPolarLineSeriesBase extends IgrPolarBase { /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } }