All Projects → facultyai → Dash Bootstrap Components

facultyai / Dash Bootstrap Components

Licence: apache-2.0
Bootstrap components for Plotly Dash

Programming Languages

javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
r
7636 projects
julia
2034 projects

Projects that are alternatives of or similar to Dash Bootstrap Components

Modular Admin Html
ModularAdmin - Free Dashboard Theme Built On Bootstrap 4 | HTML Version
Stars: ✭ 2,875 (+359.27%)
Mutual labels:  bootstrap, dashboards
Sleek Dashboard
Sleek Dashboard - Free Bootstrap 4 Admin Template and UI Kit
Stars: ✭ 690 (+10.22%)
Mutual labels:  bootstrap, dashboards
Tabler
Tabler is free and open-source HTML Dashboard UI Kit built on Bootstrap
Stars: ✭ 24,611 (+3831.47%)
Mutual labels:  bootstrap, dashboards
Coreui Angularjs
CoreUI AngularJS is free AngularJS admin template based on Bootstrap 4
Stars: ✭ 101 (-83.87%)
Mutual labels:  bootstrap, dashboards
Fitly
Self hosted web analytics for endurance athletes
Stars: ✭ 65 (-89.62%)
Mutual labels:  plotly-dash, dashboards
Vali Admin
Free Bootstrap 4 admin/dashboard template
Stars: ✭ 1,391 (+122.2%)
Mutual labels:  bootstrap, dashboards
Staradmin Free Bootstrap Admin Template
A Free Responsive Admin Dashboard Template Built With Bootstrap 4. Elegant UI Theme for Your Web App!
Stars: ✭ 1,191 (+90.26%)
Mutual labels:  bootstrap, dashboards
Slapdash
Boilerplate for bootstrapping scalable multi-page Dash applications
Stars: ✭ 225 (-64.06%)
Mutual labels:  plotly-dash, bootstrap
Socialsentiment
Sentiment Analysis application created with Python and Dash, hosted at socialsentiment.net
Stars: ✭ 402 (-35.78%)
Mutual labels:  plotly-dash, dashboards
Angular Ui Notification
Angular.js service providing simple notifications using Bootstrap 3 styles with css transitions for animating
Stars: ✭ 549 (-12.3%)
Mutual labels:  bootstrap
Theme Machine
A collection of stylized Bootstrap Themes
Stars: ✭ 585 (-6.55%)
Mutual labels:  bootstrap
Sveltestrap
Bootstrap 4 components for Svelte
Stars: ✭ 536 (-14.38%)
Mutual labels:  bootstrap
Bootstrap Switch
Turn checkboxes and radio buttons in toggle switches.
Stars: ✭ 5,132 (+719.81%)
Mutual labels:  bootstrap
Laravel Vue Pagination
A Vue.js pagination component for Laravel paginators that works with Bootstrap
Stars: ✭ 541 (-13.58%)
Mutual labels:  bootstrap
Ngx Bootstrap
Fast and reliable Bootstrap widgets in Angular (supports Ivy engine)
Stars: ✭ 5,343 (+753.51%)
Mutual labels:  bootstrap
Gae Init
Google App Engine based on Python, Flask, RESTful, Bootstrap and tons of other cool features
Stars: ✭ 533 (-14.86%)
Mutual labels:  bootstrap
Django React Blog
Simple blog built with Django and React/Redux, deployed with Docker, and served with nginx/uwsgi.
Stars: ✭ 528 (-15.65%)
Mutual labels:  bootstrap
Macbootstrap
A bootstrap script for new Mac
Stars: ✭ 623 (-0.48%)
Mutual labels:  bootstrap
Tailwindo
🔌 Convert Bootstrap CSS code to Tailwind CSS code
Stars: ✭ 606 (-3.19%)
Mutual labels:  bootstrap
Hexapod Robot Simulator
A hexapod robot simulator built from first principles
Stars: ✭ 577 (-7.83%)
Mutual labels:  plotly-dash

dash-bootstrap-components logo

Dash Bootstrap Components

Bootstrap components for Plotly Dash
Explore the documentation · Report a bug · Request a feature

GitHub Actions GitHub PyPI Conda (channel only) PyPI - Python Version

dash-bootstrap-components is a library of Bootstrap components for use with Plotly Dash, that makes it easier to build consistently styled Dash apps with complex, responsive layouts.

Table of contents

Installation

PyPI

You can install dash-bootstrap-components with pip:

pip install dash-bootstrap-components

Anaconda

You can also install dash-bootstrap-components with conda through the conda-forge channel:

conda install -c conda-forge dash-bootstrap-components

Dash for R

You can now use dash-bootstrap-components with Dash for R! To get started make sure you have the devtools library installed

install.packages("devtools")

You can then install dash-bootstrap-components from the r-release branch of this repository.

library(devtools)
install_github('facultyai/[email protected]')

Check out the docs for more details

Dash.jl

You can also use dash-bootstrap-components with Dash.jl! Install with

pkg> add DashBootstrapComponents

Check out the docs for more details

Quick start

To use dash-bootstrap-components you must do two things:

  • Link a Bootstrap v4 compatible stylesheet
  • Incorporate dash-bootstrap-components into your layout

Linking a stylesheet

dash-bootstrap-components doesn't come with CSS included. This is to give you the freedom to use any Bootstrap v4 stylesheet of your choice. This means however that in order for the components to be styled properly, you must link to a stylesheet yourself.

For convenience, links to BootstrapCDN for each theme are available through the themes module, which can be used as follows:

import dash
import dash_bootstrap_components as dbc

app = dash.Dash(external_stylesheets=[dbc.themes.BOOTSTRAP])

For more information on how to link local or external CSS, check out the Dash documentation.

Build the layout

With CSS linked, you can start building your app's layout with our Bootstrap components. See our documentation for a full list of available components, which include:

Standard row and column-based layouts

layout


Cards

cards


Tabs

tabs


Forms

forms


Dropdown menus


Tooltips

... and many more.

Contributing

We welcome contributions to dash-bootstrap-components. If you find a bug or something is unclear please submit a bug report, if you have ideas for new features please feel free to make a feature request. If you would like to submit a pull request, please read our contributing guide.

Copyright and license

Code and documentation is copyright Faculty Science Ltd. 2018-2021, and released under the Apache 2.0 license

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].