iidestiny / charts
Create charts for laravel using different charts libraries
Installs: 150
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 1
Open Issues: 0
Language:HTML
Requires
- php: >=7.0.0
- iidestiny/support: ^1.0
- illuminate/support: 5.*|^6.0
- jenssegers/date: v3.*
- jlawrence/eos: 3.*
This package is auto-updated.
Last update: 2024-10-18 20:53:48 UTC
README
What is Charts?
Charts is a multi-library chart package to create interactive charts using laravel. It Gives you access to tons of different charts. Over +100 different charts and +13 different chart libraries to choose from. With this package you can forget writing all the javascript manually and focus on your laravel project, while keeping an insane customizable chart coded in PHP. And last but not least, we support different types of charts, mathematical charts, multi-charts, they can even be created using your eloquent models! And hey... We do support realtime stuff as well ;)
Sample Chart
This chart is a multi bar chart using the material library.
$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']);
Documentation
License
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.