UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

19 lines (18 loc) 593 B
import { BBox } from '../bbox'; import type { NodeOptions, RenderContext } from '../node'; import { type DefaultStyles, Shape } from './shape'; export declare class Range<D = any> extends Shape<D> { static readonly className = "Range"; protected static defaultStyles: DefaultStyles; constructor(opts?: NodeOptions); x1: number; y1: number; x2: number; y2: number; startLine: boolean; endLine: boolean; isRange: boolean; protected computeBBox(): BBox; isPointInPath(_x: number, _y: number): boolean; render(renderCtx: RenderContext): void; }