├── LICENSE.md ├── composer.json ├── package.json ├── pint.json └── src ├── Attributes └── Axis.php ├── AxisHelper.php ├── AxisServiceProvider.php ├── Chart.php ├── Charts ├── Apex.php ├── ChartJs.php └── Highcharts.php ├── Enums └── Type.php ├── Interfaces ├── Javascriptable.php └── Renderable.php ├── Livewire └── Renderer.php ├── Support └── Script.php ├── Synthesizers └── ScriptSynth.php └── Traits ├── AsAxisChart.php ├── IsFluent.php ├── ParsesJs.php ├── RendersAsChart.php ├── RendersAsFile.php └── SerializesAsChart.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/composer.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/package.json -------------------------------------------------------------------------------- /pint.json: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "laravel" 3 | } 4 | -------------------------------------------------------------------------------- /src/Attributes/Axis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Attributes/Axis.php -------------------------------------------------------------------------------- /src/AxisHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/AxisHelper.php -------------------------------------------------------------------------------- /src/AxisServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/AxisServiceProvider.php -------------------------------------------------------------------------------- /src/Chart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Chart.php -------------------------------------------------------------------------------- /src/Charts/Apex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Charts/Apex.php -------------------------------------------------------------------------------- /src/Charts/ChartJs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Charts/ChartJs.php -------------------------------------------------------------------------------- /src/Charts/Highcharts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Charts/Highcharts.php -------------------------------------------------------------------------------- /src/Enums/Type.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Enums/Type.php -------------------------------------------------------------------------------- /src/Interfaces/Javascriptable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Interfaces/Javascriptable.php -------------------------------------------------------------------------------- /src/Interfaces/Renderable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Interfaces/Renderable.php -------------------------------------------------------------------------------- /src/Livewire/Renderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Livewire/Renderer.php -------------------------------------------------------------------------------- /src/Support/Script.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Support/Script.php -------------------------------------------------------------------------------- /src/Synthesizers/ScriptSynth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Synthesizers/ScriptSynth.php -------------------------------------------------------------------------------- /src/Traits/AsAxisChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Traits/AsAxisChart.php -------------------------------------------------------------------------------- /src/Traits/IsFluent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Traits/IsFluent.php -------------------------------------------------------------------------------- /src/Traits/ParsesJs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Traits/ParsesJs.php -------------------------------------------------------------------------------- /src/Traits/RendersAsChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Traits/RendersAsChart.php -------------------------------------------------------------------------------- /src/Traits/RendersAsFile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Traits/RendersAsFile.php -------------------------------------------------------------------------------- /src/Traits/SerializesAsChart.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/epessine/axis/HEAD/src/Traits/SerializesAsChart.php --------------------------------------------------------------------------------