MAIDR Documentation - v4.4.0
    Preparing search index...

    Type Alias D3PolarAreaConfig

    D3PolarAreaConfig: D3PieConfig

    Configuration for binding a D3 polar area (coxcomb, rose) chart.

    The wedges are drawn the way a pie's are — d3.arc() per category, usually over d3.pie() output — so this is D3PieConfig verbatim, and the binder unwraps the layout's arc for you the same way. What differs is what the wedge encodes: a polar area gives every category the same angle and varies the radius, so the values are read as a series around the spokes rather than as shares of a whole.

    bindD3PolarArea(svgElement, {
    selector: 'path.wedge',
    axes: { x: 'Month', y: 'Deaths' },
    x: 'month',
    });