TitlesData constructor
TitlesData({
- String? text,
- String? link,
- String? target,
- String? subtext,
- String? sublink,
- String? subtarget,
- String? textAlign,
- String? textVerticalAlign,
- String? textBaseline,
- String? subtextAlign,
- String? subtextVerticalAlign,
- String? subtextBaseline,
- String? backgroundColor,
- String? borderColor,
- double? borderWidth,
- double? borderRadius,
- double? padding,
- double? itemGap,
- ChartTextStyle? textStyle,
- ChartTextStyle? subtextStyle,
- Color? color,
- double? fontSize,
Implementation
TitlesData({
this.text,
this.link,
this.target,
this.subtext,
this.sublink,
this.subtarget,
this.textAlign,
this.textVerticalAlign,
this.textBaseline,
this.subtextAlign,
this.subtextVerticalAlign,
this.subtextBaseline,
this.backgroundColor,
this.borderColor,
this.borderWidth,
this.borderRadius,
this.padding,
this.itemGap,
ChartTextStyle? textStyle,
ChartTextStyle? subtextStyle,
this.color,
this.fontSize,
}) : textStyle = textStyle ?? ChartTextStyle(),
subtextStyle = subtextStyle ?? ChartTextStyle();