tickLabel static method
TextStyle
tickLabel({
- Color color = const Color(0xFF888888),
- double fontSize = 10,
- FontWeight fontWeight = FontWeight.normal,
- String? fontFamily,
Creates a tick label style.
Implementation
static TextStyle tickLabel({
Color color = const Color(0xFF888888),
double fontSize = 10,
FontWeight fontWeight = FontWeight.normal,
String? fontFamily,
}) {
return TextStyle(
color: color,
fontSize: fontSize,
fontWeight: fontWeight,
fontFamily: fontFamily,
);
}