iidestiny / charts

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

安装: 150

依赖者: 0

建议者: 0

安全: 0

星星: 0

关注者: 2

分支: 1

公开问题: 0

语言:HTML

5.4.1 2020-08-18 10:31 UTC

This package is auto-updated.

Last update: 2024-09-18 20:35:42 UTC


README

StyleCI Status Build For Laravel Total Downloads Latest Stable Version License

什么是Charts?

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

示例图表

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

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.