The official Strapi plugin that integrates Chartbrew charts in the Strapi dashboard
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.
To install the plugin, follow these steps:
Navigate to the root of your Strapi folder and run the installation commands below:
npm install strapi-plugin-chartbrew
yarn add strapi-plugin-chartbrew
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
},
},
};
Finally, run the build command:
With npm:
npm run build
With yarn:
yarn build
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.