@flashport/flashportui
Version:
This is a set basic UI components for FlashPort
18 lines (17 loc) • 409 B
TypeScript
import { Sprite } from "@flashport/flashport";
/**
* ...
* @author Kenny Lerma
*/
export declare class PlotLabel extends Sprite {
private _xLabel;
private _yLabel;
private _labelX;
private _labelY;
constructor(xLabel: string, yLabel: string);
private Draw;
get xLabel(): string;
set xLabel(value: string);
get yLabel(): string;
set yLabel(value: string);
}