tigress/charts 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

tigress/charts

最新稳定版本:2025.12.09.0

Composer 安装命令:

composer require tigress/charts

包简介

Lightweight GD-based chart generation for PHP (bar charts, etc.)

README 文档

README

A lightweight PHP library to generate simple GD-based chart images (starting with bar charts). Built to be integrated into the Tigress Framework or used standalone.

Features

  • 🟦 Bar charts with automatic or custom coloring
  • 📐 Adjustable width & height
  • 🖼️ Output as PNG image

Installation

composer require tigress/charts

Usage

use Tigress\Charts;

$data = [
    ['label' => 'Jan', 'value' => 120],
    ['label' => 'Feb', 'value' => 80, 'color' => [255, 0, 0]],
    ['label' => 'Mar', 'value' => 150],
];

Charts::bar()
    ->setTitle('Monthly Sales')
    ->setData($data)
    ->setSize(800, 400)
    ->render(__DIR__ . '/chart.png');

Roadmap

  • Bar chart
  • Line chart
  • Pie chart

License

GPL-3.0-or-later

统计信息

  • 总下载量: 10
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: GPL-3.0-or-later
  • 更新时间: 2025-05-09