Open yeonkyungnae opened 8 months ago
I want change font family, but there are no options in IStyle. Can I change default font family?
export type IStyle = { height?: number; width?: number; border?: boolean; borderColor?: string; background?: string; fontSize?: number; fontName?: string; color?: string; bold?: boolean; i?: boolean; u?: boolean; h?: IHorizontal; indent?: number; shrinkToFit?: boolean; textRotation?: number; v?: IVertical; wrapText?: boolean; };
Actually there is an option to change fontFamily. fontName?: string; change it. it works
fontName?: string;
I want change font family, but there are no options in IStyle. Can I change default font family?