15 lines
249 B
PHP
15 lines
249 B
PHP
<?php
|
|
|
|
namespace Filament\Widgets;
|
|
|
|
/**
|
|
* @deprecated Extend `ChartWidget` instead and define the `getType()` method.
|
|
*/
|
|
class BubbleChartWidget extends ChartWidget
|
|
{
|
|
protected function getType(): string
|
|
{
|
|
return 'bubble';
|
|
}
|
|
}
|