FFLineChart_LegacyAxisLabel constructor

FFLineChart_LegacyAxisLabel({
  1. FFText? title,
  2. bool? showLabels,
  3. FFText? labelStyle,
  4. double? labelInterval,
})

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;
}