Stats widget chart is not refreshing.

Stats overview widget count is refreshing/updating on filters, but the chart inside the stats widget is not. The chart is showing only mounted data.

   protected function getStats(): array
    {
        return [
            Stat::make('Subscribers', $this->count)
                ->chart($this->data)
                ->color('success'),
        ];
    }

Please help.
Was this page helpful?