Skip to main content
Radar (spider) chart with one or more series plotted on radial axes.
{
  "type": "object",
  "properties": {
    "type": {
      "const": "RadarChart",
      "default": "RadarChart",
      "type": "string"
    },
    "cssClass": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "CSS/Tailwind classes for styling"
    },
    "data": {
      "anyOf": [
        {
          "items": {
            "additionalProperties": true,
            "type": "object"
          },
          "type": "array"
        },
        {
          "type": "string"
        }
      ],
      "description": "Row data or {{ interpolation }} reference"
    },
    "series": {
      "description": "Series to render as radar areas",
      "items": {
        "$ref": "ChartSeries"
      },
      "type": "array"
    },
    "axisKey": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "Data key for angular axis labels"
    },
    "height": {
      "default": 300,
      "description": "Chart height in pixels",
      "type": "integer"
    },
    "filled": {
      "default": true,
      "description": "Fill radar polygons (False for lines only)",
      "type": "boolean"
    },
    "showDots": {
      "default": false,
      "description": "Show dots at vertices",
      "type": "boolean"
    },
    "showLegend": {
      "default": false,
      "description": "Show legend",
      "type": "boolean"
    },
    "showTooltip": {
      "default": true,
      "description": "Show tooltip on hover",
      "type": "boolean"
    },
    "showGrid": {
      "default": true,
      "description": "Show polar grid",
      "type": "boolean"
    }
  },
  "required": [
    "type",
    "data",
    "series"
  ]
}