Simple example of usage Chart element.

use function Thermage\chart;
use function Thermage\render;

// ...

$data = [
    'apple' => [
        'label' => 'Apple',
        'value' => 100,
        'color' => 'red',
    ],
    'orange' => [
        'label' => 'Orange',
        'value' => 270,
        'color' => 'orange',
    ],
    'lime' => [
        'label' => 'Lime',
        'value' => 220,
        'color' => 'green',
    ],
];

render (
    chart()
        ->data($data)
        ->horizontal()
        ->showPercents()
        ->showValues()
);

render (
    chart()
        ->data($data)
        ->inline()
        ->showPercents()
        ->showValues()
);
Terminal
$ php thermage.php
Apple17% (100)
Orange46% (270)
Lime37% (220)


Apple 17% (100) Orange 46% (270) Lime 37% (220)