igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
28 lines (27 loc) • 914 B
TypeScript
import { PrimitiveVisualData } from "./PrimitiveVisualData";
import { Ellipse } from "./Ellipse";
import { Type } from "./type";
import { RectData } from "./RectData";
import { List$1 } from "./List$1";
import { PointData } from "./PointData";
import { GetPointsSettings } from "./GetPointsSettings";
/**
* @hidden
*/
export declare class EllipseVisualData extends PrimitiveVisualData {
static $t: Type;
protected get_type(): string;
get type(): string;
constructor(a: number);
constructor(a: number, b: string, c: Ellipse);
constructor(a: number, ..._rest: any[]);
private _width;
get width(): number;
set width(a: number);
private _height;
get height(): number;
set height(a: number);
protected e(): string;
scaleByViewport(a: RectData): void;
getPointsOverride(a: List$1<List$1<PointData>>, b: GetPointsSettings): void;
}