A powerful chart component library for the TALL stack
Tailwind • Alpine • Laravel • Livewire
A comprehensive chart component library specifically designed for the TALL stack (Tailwind, Alpine, Laravel, Livewire).
The full documentation for this package involves installation, configuration, and advanced usage examples.
👉 Read the full documentation at beartropy.com/charts
- Diverse Chart Types: Includes Bar, Line, and Pie charts out of the box.
- TALL Stack Optimized: Built seamlessly for Tailwind CSS, Alpine.js, Laravel, and Livewire integration.
- Customizable: Easily configure colors, labels, and data sets.
- Reactive: Works perfectly with Livewire for real-time data updates.
- Developer Friendly: Simple API for quick integration.
You can install the package via composer:
composer require beartropy/charts<x-bar-chart
:labels="['Jan', 'Feb', 'Mar']"
:datasets="[
[
'label' => 'Sales',
'data' => [100, 200, 150],
'backgroundColor' => '#4F46E5',
]
]"
/><x-line-chart
:labels="['Jan', 'Feb', 'Mar']"
:datasets="[
[
'label' => 'Visitors',
'data' => [500, 800, 600],
'borderColor' => '#10B981',
'fill' => false,
]
]"
/><x-pie-chart
:labels="['Red', 'Blue', 'Yellow']"
:datasets="[
[
'data' => [30, 50, 20],
'backgroundColor' => ['#EF4444', '#3B82F6', '#F59E0B'],
]
]"
/>Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.
Note
Disclaimer: This software is provided "as is", without warranty of any kind, express or implied. Use at your own risk.