All Projects → pikhovkin → dash-flexbox-grid

pikhovkin / dash-flexbox-grid

Licence: MIT License
Wrapper around react-flexbox-grid for Plotly Dash

Programming Languages

python
139335 projects - #7 most used programming language
javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to dash-flexbox-grid

Dashr
Dash for R - An R interface to the Dash ecosystem for creating analytic web applications
Stars: ✭ 337 (+1673.68%)
Mutual labels:  plotly, dash, plotly-dash
Hexapod Robot Simulator
A hexapod robot simulator built from first principles
Stars: ✭ 577 (+2936.84%)
Mutual labels:  plotly, dash, plotly-dash
Dash Docs
📖 The Official Dash Userguide & Documentation
Stars: ✭ 338 (+1678.95%)
Mutual labels:  plotly, dash, plotly-dash
2019-nCoV-dash
新型冠状病毒(2019-nCoV)肺炎(COVID-19)疫情展示
Stars: ✭ 13 (-31.58%)
Mutual labels:  plotly, dash, plotly-dash
dash-redis-celery-periodic-updates
Demo apps now maintained in https://github.com/plotly/dash-enterprise-docs
Stars: ✭ 47 (+147.37%)
Mutual labels:  plotly, dash, plotly-dash
dash-mantine-components
Plotly Dash components based on Mantine React Components
Stars: ✭ 263 (+1284.21%)
Mutual labels:  plotly, dash, plotly-dash
Crypto Whale Watching App
Python Dash app that tracks whale activity in cryptocurrency markets.
Stars: ✭ 389 (+1947.37%)
Mutual labels:  plotly, dash, plotly-dash
Dash Cytoscape
Interactive network visualization in Python and Dash, powered by Cytoscape.js
Stars: ✭ 309 (+1526.32%)
Mutual labels:  plotly, dash, plotly-dash
Slapdash
Boilerplate for bootstrapping scalable multi-page Dash applications
Stars: ✭ 225 (+1084.21%)
Mutual labels:  plotly, dash, plotly-dash
Dash Sample Apps
Open-source demos hosted on Dash Gallery
Stars: ✭ 2,090 (+10900%)
Mutual labels:  plotly, dash, plotly-dash
Dash Table
A First-Class Interactive DataTable for Dash
Stars: ✭ 382 (+1910.53%)
Mutual labels:  plotly, dash, plotly-dash
Dash.jl
Dash for Julia - A Julia interface to the Dash ecosystem for creating analytic web applications in Julia. No JavaScript required.
Stars: ✭ 248 (+1205.26%)
Mutual labels:  plotly, dash, plotly-dash
Fitly
Self hosted web analytics for endurance athletes
Stars: ✭ 65 (+242.11%)
Mutual labels:  plotly, dash, plotly-dash
Dash
Analytical Web Apps for Python, R, Julia, and Jupyter. No JavaScript Required.
Stars: ✭ 15,592 (+81963.16%)
Mutual labels:  plotly, dash, plotly-dash
dash-admin
CLI tool for initiating dash boilerplate
Stars: ✭ 22 (+15.79%)
Mutual labels:  plotly, dash, plotly-dash
Interactive-Dashboards-and-Data-Apps-with-Plotly-and-Dash
Interactive Dashboards and Data Apps with Plotly and Dash, published by Packt
Stars: ✭ 181 (+852.63%)
Mutual labels:  plotly, plotly-dash
covid-19
Coronavirus COVID-19 Dashboard - Global Kaggle Data
Stars: ✭ 31 (+63.16%)
Mutual labels:  plotly, plotly-dash
Folo
📋 Form & Layout JS Components
Stars: ✭ 26 (+36.84%)
Mutual labels:  react-components, css-grid
gaitutils
Extract and visualize gait data
Stars: ✭ 28 (+47.37%)
Mutual labels:  plotly, plotly-dash
app rasa chat bot
a stateless chat bot to perform natural language queries against the App Store top charts
Stars: ✭ 20 (+5.26%)
Mutual labels:  plotly, dash

dash-flexbox-grid

PyPI PyPI - Python Version NPM PyPI - License

Wrapper around react-flexbox-grid for Plotly Dash

Installation

pip install dash_flexbox_grid

Usage

    import dash
    import dash_flexbox_grid as dfx
    import dash_html_components as html
    
    
    app = dash.Dash('')
    app.scripts.config.serve_locally = True
    
    app.layout = dfx.Grid(id='grid', fluid=True, children=[
        dfx.Row(children=[
            dfx.Col(xs=12, lg=3, children=[
                html.Div('Hello,'), html.Div('World!')
            ])
        ]),
        dfx.Row(id='row', children=[
            dfx.Col(id='col', xs=6, lg=2, children=html.Div('Hello, World!')),
            dfx.Col(xs=6, lg=2, children=html.Div('Hello, World!'))
        ])
    ])
    
    
    if __name__ == '__main__':
        app.run_server(debug=True)

Dash

Go to this link to learn about Dash.

See the dash-component-boilerplate repo for more information.

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].