axisLabel static method
TextStyle
axisLabel({
- Color color = const Color(0xFF666666),
- double fontSize = 11,
- FontWeight fontWeight = FontWeight.normal,
- String? fontFamily,
Creates an axis label style.
Implementation
static TextStyle axisLabel({
Color color = const Color(0xFF666666),
double fontSize = 11,
FontWeight fontWeight = FontWeight.normal,
String? fontFamily,
}) {
return TextStyle(
color: color,
fontSize: fontSize,
fontWeight: fontWeight,
fontFamily: fontFamily,
);
}