ag-charts-community
Version:
Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue
23 lines (22 loc) • 781 B
TypeScript
import { Padding } from "./util/padding";
import { Text } from "./scene/shape/text";
import { FontStyle, FontWeight } from "./scene/shape/text";
import { Observable } from "./util/observable";
export declare class Caption extends Observable {
readonly node: Text;
enabled: boolean;
padding: Padding;
set text(value: string);
get text(): string;
set fontStyle(value: FontStyle | undefined);
get fontStyle(): FontStyle | undefined;
set fontWeight(value: FontWeight | undefined);
get fontWeight(): FontWeight | undefined;
set fontSize(value: number);
get fontSize(): number;
set fontFamily(value: string);
get fontFamily(): string;
set color(value: string | undefined);
get color(): string | undefined;
constructor();
}