Tayo
v1.0
Toggle sidebar
Tayo

Charts / Donut

Donut

Same data shape as pie. The hollow centre displays the total sum.

Dataset Palette

Data shape

Pass this structure to the :data prop.

data shape
[
    ['label' => 'Organic Search', 'value' => 42],
    ['label' => 'Direct',        'value' => 28],
    ['label' => 'Social',        'value' => 18],
    ['label' => 'Referral',      'value' =>  8],
]

Usage

blade
<x-tayo::chart
    type="donut"
    :data="$data"
    :height="420"
    colors="default"
/>