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:
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-chartbrewAdd the following attribute in the
config/plugins.jsfile:module.exports = ({ env }) => ({ // Other plugins 'chartbrew': { enabled: true, // Additional configuration }, });If you do not have the
plugins.jsfile yet, add the file with the following contents:module.exports = { // Other configurations plugins: { 'chartbrew': { enabled: true, // Additional configuration }, }, };Finally, run the build command:
With npm:
npm run buildWith 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.