mladindima/charts

使用不同的图表库为 Laravel 创建图表

维护者

详细信息

github.com/mladindima/Charts

源代码

安装: 14

依赖: 0

建议者: 0

安全: 0

星标: 0

关注者: 0

分支: 346

语言:HTML


README

StyleCI Status Build For Laravel Total Downloads Latest Stable Version License

什么是 Charts?

Charts 是一个多库图表包,用于使用 Laravel 创建交互式图表。它为您提供访问大量不同图表的权限。超过 +100 种不同的图表和 +13 个不同的图表库可供选择。使用此包,您可以忘记手动编写所有 JavaScript,而将重点放在 Laravel 项目上,同时保持用 PHP 编写的图表具有极高的可定制性。最重要的是,我们支持不同类型的图表,包括数学图表、多图表,甚至可以使用您的 eloquent 模型创建它们!嘿,我们甚至还支持实时内容哦;)

示例图表

此图表是一个使用材料库的多条形图。

Charts Logo

$chart = Charts::multi('bar', 'material')
            // Setup the chart settings
            ->title("My Cool Chart")
            // A dimension of 0 means it will take 100% of the space
            ->dimensions(0, 400) // Width x Height
            // This defines a preset of colors already done:)
            ->template("material")
            // You could always set them manually
            // ->colors(['#2196F3', '#F44336', '#FFC107'])
            // Setup the diferent datasets (this is a multi chart)
            ->dataset('Element 1', [5,20,100])
            ->dataset('Element 2', [15,30,80])
            ->dataset('Element 3', [25,10,40])
            // Setup what the values mean
            ->labels(['One', 'Two', 'Three']);

文档

许可协议

MIT License

Copyright (c) 2016 Erik Campobadal

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.