Black Dashboard PRO Angular is a beautiful Bootstrap 4 and Angular.Admin Dashboard with a huge number of components built to fit together and look amazing. If you are looking for a tool to manage and visualize data about your business, this dashboard is the thing for you. It combines colors that are easy on the eye, spacious cards, beautiful typography, and graphics. Black Dashboard PRO Angular comes packed with all plugins that you might need inside a project and documentation on how to get started. It is light and easy to use, and also very powerful.
Black Dashboard PRO Angular features over 160 individual components, giving you the freedom of choosing and combining. This means that there are thousands of possible combinations. All components can take variations in color, that you can easily modify using SASS files. You will save a lot of time going from prototyping to full-functional code because all elements are implemented. We thought about everything, so this dashboard comes with 2 versions, Dark Mode and Light Mode.
We are very excited to share this dashboard with you and we look forward to hearing your feedback!
Example Pages We wanted to fully display the power of this dashboard, so the kit comes packed with examples showing you how to use the components.
- Versions
- Demo
- Quick Start
- Documentation
- File Structure
- Browser Support
- Resources
- Reporting Issues
- Technical Support or Questions
- Licensing
- Useful Links
HTML | React | Vue | Angular |
---|---|---|---|
Dashboard | User Profile | Tables | Maps | Notification |
---|---|---|---|---|
Quick start options:
The documentation for the Black Dashboard PRO Angular is hosted at our website.
Within the download you'll find the following directories and files:
black-dashboad-pro-angular
├── CHANGELOG.md
├── ISSUE_TEMPLATE.md
├── README.md
├── angular.json
├── documentation
│ ├── black-dashboard.css
│ └── documentation.html
├── e2e
├── package-lock.json
├── package.json
├── src
│ ├── app
│ │ ├── app-routing.module.ts
│ │ ├── app.component.html
│ │ ├── app.component.scss
│ │ ├── app.component.spec.ts
│ │ ├── app.component.ts
│ │ ├── app.module.ts
│ │ ├── components
│ │ │ ├── auth-navbar
│ │ │ │ ├── auth-navbar.component.html
│ │ │ │ ├── auth-navbar.component.scss
│ │ │ │ ├── auth-navbar.component.spec.ts
│ │ │ │ └── auth-navbar.component.ts
│ │ │ ├── components.module.ts
│ │ │ ├── fixed-plugin
│ │ │ │ ├── fixed-plugin.component.html
│ │ │ │ ├── fixed-plugin.component.scss
│ │ │ │ ├── fixed-plugin.component.spec.ts
│ │ │ │ └── fixed-plugin.component.ts
│ │ │ ├── footer
│ │ │ │ ├── footer.component.css
│ │ │ │ ├── footer.component.html
│ │ │ │ ├── footer.component.spec.ts
│ │ │ │ └── footer.component.ts
│ │ │ ├── navbar
│ │ │ │ ├── navbar.component.css
│ │ │ │ ├── navbar.component.html
│ │ │ │ ├── navbar.component.spec.ts
│ │ │ │ └── navbar.component.ts
│ │ │ ├── picture-upload
│ │ │ │ ├── picture-upload.component.css
│ │ │ │ ├── picture-upload.component.html
│ │ │ │ ├── picture-upload.component.spec.ts
│ │ │ │ └── picture-upload.component.ts
│ │ │ ├── rtl-navbar
│ │ │ │ ├── rtl-navbar.component.html
│ │ │ │ ├── rtl-navbar.component.scss
│ │ │ │ ├── rtl-navbar.component.spec.ts
│ │ │ │ └── rtl-navbar.component.ts
│ │ │ ├── rtl-sidebar
│ │ │ │ ├── rtl-sidebar.component.html
│ │ │ │ ├── rtl-sidebar.component.scss
│ │ │ │ ├── rtl-sidebar.component.spec.ts
│ │ │ │ └── rtl-sidebar.component.ts
│ │ │ ├── sidebar
│ │ │ │ ├── sidebar.component.css
│ │ │ │ ├── sidebar.component.html
│ │ │ │ ├── sidebar.component.spec.ts
│ │ │ │ └── sidebar.component.ts
│ │ │ └── vector-map
│ │ │ ├── vector-map.component.css
│ │ │ ├── vector-map.component.html
│ │ │ ├── vector-map.component.spec.ts
│ │ │ ├── vector-map.component.ts
│ │ │ └── vector-map.service.ts
│ │ ├── layouts
│ │ │ ├── admin-layout
│ │ │ │ ├── admin-layout.component.html
│ │ │ │ ├── admin-layout.component.scss
│ │ │ │ ├── admin-layout.component.spec.ts
│ │ │ │ ├── admin-layout.component.ts
│ │ │ │ └── admin-layout.module.ts
│ │ │ ├── auth-layout
│ │ │ │ ├── auth-layout.component.html
│ │ │ │ ├── auth-layout.component.scss
│ │ │ │ ├── auth-layout.component.spec.ts
│ │ │ │ ├── auth-layout.component.ts
│ │ │ │ └── auth-layout.module.ts
│ │ │ └── rtl-layout
│ │ │ ├── rtl-layout.component.html
│ │ │ ├── rtl-layout.component.scss
│ │ │ ├── rtl-layout.component.spec.ts
│ │ │ ├── rtl-layout.component.ts
│ │ │ └── rtl-layout.module.ts
│ │ └── pages
│ │ └── examples
│ │ ├── calendar
│ │ │ ├── calendar.component.html
│ │ │ ├── calendar.component.ts
│ │ │ ├── calendar.module.ts
│ │ │ └── calendar.routing.ts
│ │ ├── charts
│ │ │ ├── charts.component.html
│ │ │ ├── charts.component.ts
│ │ │ ├── charts.module.ts
│ │ │ └── charts.routing.ts
│ │ ├── components
│ │ │ ├── buttons
│ │ │ │ ├── buttons.component.html
│ │ │ │ └── buttons.component.ts
│ │ │ ├── components.module.ts
│ │ │ ├── components.routing.ts
│ │ │ ├── grid
│ │ │ │ ├── grid.component.html
│ │ │ │ └── grid.component.ts
│ │ │ ├── icons
│ │ │ │ ├── icons.component.html
│ │ │ │ └── icons.component.ts
│ │ │ ├── notifications
│ │ │ │ ├── notifications.component.html
│ │ │ │ └── notifications.component.ts
│ │ │ ├── panels
│ │ │ │ ├── panels.component.html
│ │ │ │ └── panels.component.ts
│ │ │ ├── sweetalert
│ │ │ │ ├── sweetalert.component.html
│ │ │ │ └── sweetalert.component.ts
│ │ │ └── typography
│ │ │ ├── typography.component.html
│ │ │ └── typography.component.ts
│ │ ├── dashboard
│ │ │ ├── dashboard.component.html
│ │ │ ├── dashboard.component.ts
│ │ │ ├── dashboard.module.ts
│ │ │ └── dashboard.routing.ts
│ │ ├── forms
│ │ │ ├── extended
│ │ │ │ ├── extended.component.html
│ │ │ │ └── extended.component.ts
│ │ │ ├── forms.module.ts
│ │ │ ├── forms.routing.ts
│ │ │ ├── regular
│ │ │ │ ├── regular.component.html
│ │ │ │ └── regular.component.ts
│ │ │ ├── validation
│ │ │ │ ├── password-validator.component.ts
│ │ │ │ ├── validation.component.html
│ │ │ │ └── validation.component.ts
│ │ │ └── wizard
│ │ │ ├── wizard.component.html
│ │ │ └── wizard.component.ts
│ │ ├── maps
│ │ │ ├── fullscreen
│ │ │ │ ├── fullscreen.component.html
│ │ │ │ └── fullscreen.component.ts
│ │ │ ├── google
│ │ │ │ ├── google.component.html
│ │ │ │ └── google.component.ts
│ │ │ ├── maps.module.ts
│ │ │ ├── maps.routing.ts
│ │ │ └── vector
│ │ │ ├── vector-map.service.ts
│ │ │ ├── vector.component.html
│ │ │ └── vector.component.ts
│ │ ├── pages
│ │ │ ├── lock
│ │ │ │ ├── lock.component.html
│ │ │ │ └── lock.component.ts
│ │ │ ├── login
│ │ │ │ ├── login.component.html
│ │ │ │ └── login.component.ts
│ │ │ ├── pages.module.ts
│ │ │ ├── pages.routing.ts
│ │ │ ├── pricing
│ │ │ │ ├── pricing.component.html
│ │ │ │ └── pricing.component.ts
│ │ │ ├── register
│ │ │ │ ├── register.component.html
│ │ │ │ └── register.component.ts
│ │ │ ├── rtl
│ │ │ │ ├── rtl.component.html
│ │ │ │ ├── rtl.component.ts
│ │ │ │ ├── rtl.module.ts
│ │ │ │ └── rtl.routing.ts
│ │ │ ├── timeline
│ │ │ │ ├── timeline.component.html
│ │ │ │ ├── timeline.component.ts
│ │ │ │ ├── timeline.module.ts
│ │ │ │ └── timeline.routing.ts
│ │ │ └── user
│ │ │ ├── user-profile.module.ts
│ │ │ ├── user-profile.routing.ts
│ │ │ ├── user.component.html
│ │ │ └── user.component.ts
│ │ ├── tables
│ │ │ ├── extended
│ │ │ │ ├── extended.component.html
│ │ │ │ └── extended.component.ts
│ │ │ ├── ngxdatatables
│ │ │ │ ├── ngxdatatables.component.html
│ │ │ │ └── ngxdatatables.component.ts
│ │ │ ├── regular
│ │ │ │ ├── regular.component.html
│ │ │ │ └── regular.component.ts
│ │ │ ├── tables.module.ts
│ │ │ └── tables.routing.ts
│ │ └── widgets
│ │ ├── widgets.component.html
│ │ ├── widgets.component.ts
│ │ ├── widgets.module.ts
│ │ └── widgets.routing.ts
│ ├── assets
│ │ ├── css
│ │ ├── demo
│ │ ├── fonts
│ │ ├── img
│ │ └── scss
│ │ ├── black-dashboard
│ │ │ ├── angular-differences
│ │ │ ├── bootstrap
│ │ │ └── custom
│ │ └── black-dashboard.scss
│ ├── browserslist
│ ├── environments
│ ├── favicon.ico
│ ├── index.html
│ ├── karma.conf.js
│ ├── main.ts
│ ├── polyfills.ts
│ ├── styles.scss
│ ├── test.ts
│ ├── tsconfig.app.json
│ ├── tsconfig.spec.json
│ └── tslint.json
├── tsconfig.json
└── tslint.json
At present, we officially aim to support the last two versions of the following browsers:
- Demo: https://demos.creative-tim.com/black-dashboard-pro-angular/#/dashboard
- Download Page: https://www.creative-tim.com/product/black-dashboard-pro-angular
- Documentation: https://demos.creative-tim.com/black-dashboard-pro-angular/#/documentation/overview
- License Agreement: https://www.creative-tim.com/license
- Support: https://www.creative-tim.com/contact-us
- Issues: Github Issues Page
We use GitHub Issues as the official bug tracker for the Black Dashboard PRO Angular. Here are some advices for our users that want to report an issue:
- Make sure that you are using the latest version of the Black Dashboard PRO Angular. Check the CHANGELOG from your dashboard on our website.
- Providing us reproducible steps for the issue will shorten the time it takes for it to be fixed.
- Some issues may be browser specific, so specifying in what browser you encountered the issue might help.
If you have questions or need help integrating the product please contact us instead of opening an issue.
- Copyright 2018 Creative Tim (https://www.creative-tim.com)
- Creative Tim License
More products from Creative Tim: https://www.creative-tim.com/products
Tutorials: https://www.youtube.com/channel/UCVyTG4sCw-rOvB9oHkzZD1w
Freebies: https://www.creative-tim.com/products
Affiliate Program (earn money): https://www.creative-tim.com/affiliates/new
Social Media:
Twitter: https://twitter.com/CreativeTim
Facebook: https://www.facebook.com/CreativeTim
Dribbble: https://dribbble.com/creativetim
Google+: https://plus.google.com/+CreativetimPage
Instagram: https://instagram.com/creativetimofficial