FFLineChart_LegacyAxisLabel constructor
FFLineChart_LegacyAxisLabel({})
Implementation
factory FFLineChart_LegacyAxisLabel({
FFText? title,
$core.bool? showLabels,
FFText? labelStyle,
$core.double? labelInterval,
}) {
final result = create();
if (title != null) result.title = title;
if (showLabels != null) result.showLabels = showLabels;
if (labelStyle != null) result.labelStyle = labelStyle;
if (labelInterval != null) result.labelInterval = labelInterval;
return result;
}