FFChartAxisInfo_AxisLabel constructor

FFChartAxisInfo_AxisLabel({
  1. FFText? title,
  2. bool? showLabels,
  3. FFText? labelStyle,
  4. double? labelInterval,
  5. FFChartLabelFormatInfo? labelFormat,
  6. double? reservedSize,
})

Implementation

factory FFChartAxisInfo_AxisLabel({
  FFText? title,
  $core.bool? showLabels,
  FFText? labelStyle,
  $core.double? labelInterval,
  FFChartLabelFormatInfo? labelFormat,
  $core.double? reservedSize,
}) {
  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;
  if (labelFormat != null) result.labelFormat = labelFormat;
  if (reservedSize != null) result.reservedSize = reservedSize;
  return result;
}