i have the same issue on a drupal 10.4.5 site , i think the problem is more with drupal upgrade than charts upgrade .
5.1.0 worked fine on durpal 10.2 upgrading to 10.4.1 got me the same issue :
The "" plugin does not exist. Valid plugin IDs for Drupal\charts\TypeManager are: area, bar, bubble, column, donut, gauge, line, pie, scatter, spline in
Drupal\Core\Plugin\DefaultPluginManager->doGetDefinition()
nasreddine123 → created an issue.
xurizaemon → credited Nasreddine123 → .
after debugging, it appears the issue lies with Drupal 10, likely starting from the 9.5.x version of Drupal core. In the menu_tree table, the route_param_key value has changed. It is now formatted as "taxonomy_term=some_id&display_id=page_1&view_id=taxonomy_term", whereas previously it was simply "taxonomy_term=some_id". so the loadLinksByRoute no longuer return results.
This patch adds the missing route params .
Nasreddine123 → created an issue.