beartropy/charts

Chart components for the Beartropy ecosystem.

Installs: 26

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/beartropy/charts

1.1.9 2026-01-05 21:16 UTC

This package is auto-updated.

Last update: 2026-01-05 21:17:02 UTC


README

🐻 Beartropy Charts

A powerful chart component library for the TALL stack

Tailwind • Alpine • Laravel • Livewire

Latest Stable Version Total Downloads License

A comprehensive chart component library specifically designed for the TALL stack (Tailwind, Alpine, Laravel, Livewire).

📚 Documentation

The full documentation for this package involves installation, configuration, and advanced usage examples.

👉 Read the full documentation at beartropy.com/charts

✨ Key Features

  • 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.

🚀 Quick Installation

You can install the package via composer:

composer require beartropy/charts

💡 Basic Usage

Bar Chart

<x-bar-chart
    :labels="['Jan', 'Feb', 'Mar']"
    :datasets="[
        [
            'label' => 'Sales',
            'data' => [100, 200, 150],
            'backgroundColor' => '#4F46E5',
        ]
    ]"
/>

Line Chart

<x-line-chart
    :labels="['Jan', 'Feb', 'Mar']"
    :datasets="[
        [
            'label' => 'Visitors',
            'data' => [500, 800, 600],
            'borderColor' => '#10B981',
            'fill' => false,
        ]
    ]"
/>

Pie Chart

<x-pie-chart
    :labels="['Red', 'Blue', 'Yellow']"
    :datasets="[
        [
            'data' => [30, 50, 20],
            'backgroundColor' => ['#EF4444', '#3B82F6', '#F59E0B'],
        ]
    ]"
/>

🤝 Contributing

Please see CONTRIBUTING for details.

📄 License

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.