Skip to content

Polar Area With Error Bars

Code

ts
export const config: ChartConfiguration<'polarAreaWithErrorBars'> = {
  type: 'polarAreaWithErrorBars',
  data: {
    labels: ['A', 'B'],
    datasets: [
      {
        data: [
          {
            r: 4,
            rMin: 1,
            rMax: 6,
          },
          {
            r: 2,
            rMin: 1,
            rMax: 4,
          },
        ],
      },
    ],
  },
};