@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
32 lines (31 loc) • 761 B
TypeScript
export interface IPPStyle {
Header: {
headerColor: string;
headerBackColor: string;
headerFontFamily: string;
headerFontStyle: string;
headerFontSize: string;
headerFontWeight: string;
height: number;
Columns: {
columnFriendlyName: string;
width: number;
textAlign: string;
}[];
};
Row: {
color: string;
backColor: string;
altBackColor: string;
fontFamily: string;
fontStyle: string;
fontSize: string;
fontWeight: string;
height: number;
Columns: {
columnFriendlyName: string;
width: number;
textAlign: string;
}[];
};
}