
Security News
How Enterprise Security Is Adapting to AI-Accelerated Threats
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.
@keen.io/dashboard-creator
Advanced tools
The Dashboard Creator is an open source point-and-click interface for creating dashboards. It's maintained by the team at Keen IO.
npm install @keen.io/dashboard-creator --save
or
yarn add @keen.io/dashboard-creator
The Dashboard Creator components configuration could be specified during creation of application instance.
The Dashboard Creator @keen.io/dataviz theme could be overridden during initialization of application instance.
const dashboardCreator = new KeenDashboardCreator({
theme: {
colors: ['green', 'navy', 'orange'],
metric: {
value: {
typography: {
fontColor: 'black',
fontSize: 23
},
},
}
},
});
Additional handler could be used to get information about the current view rendered in the application.
export type View = 'management' | 'editor' | 'viewer';
const dashboardCreator = new KeenDashboardCreator({
onViewChange: (view: View, dashboardId: string | null) => {}
});
The render method accepts initialView and dashboardId argument that could be used to present specific dashboard initially.
For editor provided as initial view the dashboard in viewer mode will be rendered.
export type View = 'management' | 'editor' | 'viewer';
const dashboardCreator = new KeenDashboardCreator({});
dashboardCreator.render('viewer', '@dashboardId');
By default all users are allowed to edit and share dashboards. To restrict privileges - specify scopes by using userPermissions argument. In example below user will be able to edit dashboards - however the share feature will be not available.
type Scopes = 'share-dashboard' | 'edit-dashboard' | 'edit-dashboard-theme';
const dashboardCreator = new KeenDashboardCreator({
userPermissions: ['edit-dashboard', 'edit-dashboard-theme'],
});
Specify default timezone used for new created queries. Provided argument must be compatible with IANA Time Zone Database standard.
const dashboardCreator = new KeenDashboardCreator({
defaultTimezoneForQuery: 'Europe/Warsaw',
});
Disables suggestions in query creator filters
const dashboardCreator = new KeenDashboardCreator({
disableQueryFilterSuggestions: true,
});
Disables possibility to change timezone for queries from user interface.
const dashboardCreator = new KeenDashboardCreator({
disableTimezoneSelection: true,
});
Setup default timezone in widget and disable timezone selection.
const dashboardCreator = new KeenDashboardCreator({
widgetsConfiguration: {
datePicker: {
defaultTimezone: 'Etc/UTC',
disableTimezoneSelection: true
}
},
});
Unmounts Dashboard Creator application from root container.
const dashboardCreator = new KeenDashboardCreator();
...
dashboardCreator.destroy();
node - make sure it's minimum 10.x.xyarn - to install project dependenciesyarn start:dashboard-creatorList of useful commands that could be used by developers. Execution in the command-line interface should be prefixed with yarn package manager.
| Command | Description |
|---|---|
lint | run linter against current application codebase. |
test | run unit tests. |
build | builds application distribution. |
prettier | run code formatter process against current codebase. |
This project uses Conventional Commits to enforce common commit standards.
| Command | Description |
|---|---|
npx git-cz | run commit command line interface. |
FAQs
Dashboard Creator by Keen IO
We found that @keen.io/dashboard-creator demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.