UNPKG

igniteui-react-charts

Version:

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

26 lines (25 loc) 619 B
import { IgrScatterBase } from "./igr-scatter-base"; import { ScatterSeries } from "./ScatterSeries"; /** * Represents a IgxDataChartComponent scatter series */ export class IgrScatterSeries extends IgrScatterBase { createImplementation() { return new ScatterSeries(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } /** * Gets whether the series has only marker as visuals */ get hasOnlyMarkers() { return this.i.ek; } }