Sorry for the silly question, But I couldn't find color parameter for the circular border around the whole radar chart
I'm trying to make it transparent color, or find a way to remove it 
@payam-zahedi Can you check it out?
@Mohdx you can use the radarBorderData field in RadarChartData chart class.
The sample code for that would look something like this:
RadarChartData(
dataSets: showingDataSets(),
radarBorderData: const BorderSide(color: Colors.transparent),
...
),
Yeah its there radarBorderData: const BorderSide(color: Colors.transparent), . But the border still visible, not transparent 馃憖
you are right @Mohdx, I checked out the source code and found that we had some changes in the drawing radar chart.
@imaNNeoFighT I will create a PR for this issue ASAP.
Most helpful comment
you are right @Mohdx, I checked out the source code and found that we had some changes in the drawing radar chart.
@imaNNeoFighT I will create a PR for this issue ASAP.