abraxas81/charts

针对php 5.6.4修改

维护者

详细信息

github.com/abraxas81/Charts

源代码

安装: 22

依赖者: 0

建议者: 0

安全性: 0

星星: 0

关注者: 2

分支: 345

语言:HTML

5.4.0 2017-09-28 14:44 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.