UNPKG

igniteui-react-charts

Version:

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

29 lines (28 loc) 849 B
import { IgrContourValueResolver } from "./igr-contour-value-resolver"; import { LinearContourValueResolver } from "./LinearContourValueResolver"; /** * ContourValueResolver class which resolves contour lines to be distributed at linear intervals from the data minimum to the data maximum. */ export class IgrLinearContourValueResolver extends IgrContourValueResolver { createImplementation() { return new LinearContourValueResolver(); } /** * @hidden */ get i() { return this._implementation; } constructor(props) { super(props); } /** * Gets or sets how many contour values to return. */ get valueCount() { return this.i.valueCount; } set valueCount(v) { this.i.valueCount = +v; } }