PieRadarController<P extends PieRadarChartPainter<ChartData<IDataSet<Entry> >? > > constructor
PieRadarController<P extends PieRadarChartPainter<ChartData<IDataSet<Entry> >? > > ({
- double rotationAngle = 270,
- double? rawRotationAngle = 270,
- bool rotateEnabled = true,
- double minOffset = 30,
- IMarker? marker,
- Description? description,
- OnChartValueSelectedListener? selectionListener,
- double maxHighlightDistance = 100.0,
- bool highLightPerTapEnabled = true,
- double extraTopOffset = 0.0,
- double extraRightOffset = 0.0,
- double extraBottomOffset = 0.0,
- double extraLeftOffset = 0.0,
- bool drawMarkers = true,
- bool resolveGestureHorizontalConflict = false,
- bool resolveGestureVerticalConflict = false,
- double descTextSize = 12,
- double infoTextSize = 12,
- Color? descTextColor,
- Color? infoTextColor,
- Color? infoBgColor,
- String noDataText = "No chart data available.",
- XAxisSettingFunction? xAxisSettingFunction,
- LegendSettingFunction? legendSettingFunction,
- DataRendererSettingFunction? rendererSettingFunction,
Implementation
PieRadarController(
{this.rotationAngle = 270,
this.rawRotationAngle = 270,
this.rotateEnabled = true,
this.minOffset = 30,
IMarker? marker,
Description? description,
OnChartValueSelectedListener? selectionListener,
double maxHighlightDistance = 100.0,
bool highLightPerTapEnabled = true,
double extraTopOffset = 0.0,
double extraRightOffset = 0.0,
double extraBottomOffset = 0.0,
double extraLeftOffset = 0.0,
bool drawMarkers = true,
bool resolveGestureHorizontalConflict = false,
bool resolveGestureVerticalConflict = false,
double descTextSize = 12,
double infoTextSize = 12,
Color? descTextColor,
Color? infoTextColor,
Color? infoBgColor,
String noDataText = "No chart data available.",
XAxisSettingFunction? xAxisSettingFunction,
LegendSettingFunction? legendSettingFunction,
DataRendererSettingFunction? rendererSettingFunction})
: super(
marker: marker,
noDataText: noDataText,
xAxisSettingFunction: xAxisSettingFunction,
legendSettingFunction: legendSettingFunction,
rendererSettingFunction: rendererSettingFunction,
description: description,
selectionListener: selectionListener,
maxHighlightDistance: maxHighlightDistance,
highLightPerTapEnabled: highLightPerTapEnabled,
extraTopOffset: extraTopOffset,
extraRightOffset: extraRightOffset,
extraBottomOffset: extraBottomOffset,
extraLeftOffset: extraLeftOffset,
drawMarkers: drawMarkers,
resolveGestureHorizontalConflict: resolveGestureHorizontalConflict,
resolveGestureVerticalConflict: resolveGestureVerticalConflict,
descTextSize: descTextSize,
infoTextSize: infoTextSize,
descTextColor: descTextColor,
infoBgColor: infoBgColor,
infoTextColor: infoTextColor);