Download the PHP package christopherarter/cool-charts without Composer
On this page you can find all versions of the php package christopherarter/cool-charts. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download christopherarter/cool-charts
More information about christopherarter/cool-charts
Files in christopherarter/cool-charts
Package cool-charts
Short Description This is the cool-charts project.
License MIT
Informations about the package cool-charts
Hey, cool charts.
This PHP package provides a flexible and convenient way to transform your data into different chart formats. It provides a fluent interface to build charts and supports different chart libraries, such as ChartJS and HighCharts.
Installation
Use Composer to install this package. Run the following command:
composer require christopherarter/cool-charts
Usage
Basic Usage
First, you need to use the Builder class to construct your chart.
Builder Methods
The Builder
class provides a fluent interface to build your charts:
pie()
: Use this method to specify that you want to create a pie chart.bar()
: Use this method to specify that you want to create a bar chart.line()
: Use this method to specify that you want to create a line chart.title(string $title)
: Use this method to set the title of the chart.data(array $data)
: Use this method to set the data for the chart. The data should be an array of numbers.labels(array $labels)
: Use this method to set the labels for the chart data. The labels should be an array of strings.useHighCharts()
: Use this method to specify that you want to use the HighCharts library to render the chart.useChartJs()
: Use this method to specify that you want to use the ChartJs library to render the chart.build()
: Finally, use this method to build the chart. This method returns an array representing the chart.
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.
License
MIT