More Premium Hugo Themes Premium React Themes

Strapi Plugin Chartbrew

The official Strapi plugin that integrates Chartbrew charts in the Strapi dashboard

Strapi Plugin Chartbrew

The official Strapi plugin that integrates Chartbrew charts in the Strapi dashboard

Author Avatar Theme by chartbrew
Github Stars Github Stars: 24
Last Commit Last Commit: Oct 7, 2025 -
First Commit Created: Dec 18, 2023 -
Strapi Plugin Chartbrew screenshot

Overview

This is a plugin for Strapi that allows users to integrate Chartbrew dashboards into their Strapi interface. It provides features such as multi-dashboard support, creating dashboards from collection types, adding charts to existing dashboards, and automatic updates. Users can use this plugin by either having a managed Chartbrew account or self-hosting the platform.

Features

  • Explore your Chartbrew dashboards directly on Strapi
  • Multi-dashboard support, can switch between them
  • Create dashboards from your collection types from the Strapi interface
  • Add charts to existing dashboards straight from Strapi
  • The charts are kept up-to-date automatically (you can set an update schedule on Chartbrew)

Installation

To install the plugin, follow these steps:

  1. Navigate to the root of your Strapi folder and run the installation commands below:

    • With npm:
    npm install strapi-plugin-chartbrew
    
    • With yarn:
    yarn add strapi-plugin-chartbrew
    
  2. Add the following attribute in the config/plugins.js file:

    module.exports = ({ env }) => ({
      // Other plugins
      'chartbrew': {
        enabled: true,
        // Additional configuration
      },
    });
    

    If you do not have the plugins.js file yet, add the file with the following contents:

    module.exports = {
      // Other configurations
      plugins: {
        'chartbrew': {
          enabled: true,
          // Additional configuration
        },
      },
    };
    
  3. Finally, run the build command:

    • With npm:

      npm run build
      
    • With yarn:

      yarn build
      

Summary

The Chartbrew plugin for Strapi allows users to integrate Chartbrew dashboards directly into the Strapi interface. It provides several features such as multi-dashboard support, creating dashboards from collection types, adding charts to existing dashboards, and automatic updates. The plugin can be installed by following the provided installation guide.