ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
13 lines (12 loc) • 345 B
TypeScript
import { FontStyle, FontWeight } from "../scene/shape/text";
import { Observable } from "../util/observable";
export declare class Label extends Observable {
enabled: boolean;
fontSize: number;
fontFamily: string;
fontStyle?: FontStyle;
fontWeight?: FontWeight;
color: string;
getFont(): string;
constructor();
}