Skip to content

Commit

Permalink
Merge branch 'release/0.1.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
leandrocfe committed Dec 12, 2022
2 parents e7fa106 + 7df388b commit 9cd78fa
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@

![dashboard gif demo](https://raw.githubusercontent.com/leandrocfe/filament-apex-charts/master/screenshots/dash-example.gif)

[Online Filament Project Example](https://filament-apex-charts-demo.leandroferreira.dev.br/)

## Installation

You can install the package via composer:
Expand Down Expand Up @@ -127,7 +129,11 @@ The `getOptions()` method is used to return an array of options based on [Apex C

## Examples

[CHART DEMOS](examples/)
- [Online Filament Project Example](https://filament-apex-charts-demo.leandroferreira.dev.br/)

- [Github Filament Project Example](https://github.com/leandrocfe/filament-apex-charts-demo)

- [Code Examples](examples/)

## Setting a widget title

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@

use Leandrocfe\FilamentApexCharts\Widgets\ApexChartWidget;

class BasicBloxPlotChart extends ApexChartWidget
class BasicBoxPlotChart extends ApexChartWidget
{
/**
* Chart Id
*
* @var string
*/
protected static string $chartId = 'basicBloxPlotChart';
protected static string $chartId = 'basicBoxPlotChart';

/**
* Widget Title
*
* @var string|null
*/
protected static ?string $heading = 'BasicBloxPlotChart';
protected static ?string $heading = 'BasicBoxPlotChart';

/**
* Chart options (series, labels, types, size, animations...)
Expand Down
5 changes: 0 additions & 5 deletions examples/Radialbar/GradientCircleChart.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ protected function getOptions(): array
'hollow' => [
'margin' => 0,
'size' => '70%',
'background' => '#fff',
'image' => null,
'imageOffsetX' => 0,
'imageOffsetY' => 0,
'position' => 'front',
'dropShadow' => [
'enabled' => true,
'top' => 3,
Expand Down

0 comments on commit 9cd78fa

Please sign in to comment.