defaultRadarChartStyles constant

List<RadarChartStyle> const defaultRadarChartStyles

The default preset chart styles ordered in priority of usage.

Implementation

static const List<RadarChartStyle> defaultRadarChartStyles = [
  RadarChartStyle(
    strokeColor: Color(0xff0984f9),
    areaColor: Color(0x1a2196F3),
    dotted: true,
    dotColor: Color(0xff0984f9),
  ),
  RadarChartStyle(
    strokeColor: Color(0xff01d57d),
    areaColor: Color(0x1a01d57d),
    dotted: true,
    dotColor: Color(0xff01d57d),
  ),
  RadarChartStyle(
    strokeColor: Color(0xfffac958),
    areaColor: Color(0x1afac958),
    dotted: true,
    dotColor: Color(0xfffac958),
  ),
  RadarChartStyle(
    strokeColor: Color(0xff6edeee),
    areaColor: Color(0x1a6edeee),
    dotted: true,
    dotColor: Color(0xff6edeee),
  ),
  RadarChartStyle(
    strokeColor: Color(0xfff79631),
    areaColor: Color(0x1af79631),
    dotted: true,
    dotColor: Color(0xfff79631),
  ),
  RadarChartStyle(
    strokeColor: Color(0xfff7779c),
    areaColor: Color(0x1af7779c),
    dotted: true,
    dotColor: Color(0xfff7779c),
  ),
];