igniteui-react-charts
Version:
Ignite UI React charting components for building rich data visualizations using TypeScript APIs.
27 lines (26 loc) • 834 B
TypeScript
import { PropertyChangedEventArgs, Type } from "igniteui-react-core";
import { Brush } from "igniteui-react-core";
import { Thickness } from "igniteui-react-core";
/**
* @hidden
*/
export interface IAxisAnnotation {
readonly text: string;
readonly value: any;
resolveLabelValue(): string;
labelFormat: string;
labelFormatSpecifiers: any[];
formatLabel: (item: any) => string;
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
readonly textColor: Brush;
readonly background: Brush;
readonly outline: Brush;
readonly strokeThickness: number;
readonly backgroundCornerRadius: number;
readonly backgroundPadding: Thickness;
checkForExtentReset(a: () => void): void;
}
/**
* @hidden
*/
export declare let IAxisAnnotation_$type: Type;