Hi everyone, good luck with your learning. Don't forget to download the supporting documents here: drive.google.com/file/d/1Mmbw915FOL_oZ08b1ayEpHDHFnmnx8SM/view?usp=sharing 👉If you benefitted from these tutorials & would like to show your appreciation & support the existence of more tutorials: www.patreon.com/charmingdata Thank you 💙
You are just my hero. The whole week i was thinking of you doing a bootstrap tutorial. It is like you read my mind. I did not even follow the tutorial yet,but i am so excited to watch it after writing this comment. Thanks buddy.
Thanks! Another great tutrial. I have seen almost all the videos on the channel. Great job. We needed a channel dedicated to Plotly and Dash in greater depth
@@akhmadsyakhlani2314 Sure @Akgmad, You can send me a quick email to info@charmingdata.org . If you're looking for a deeper consultation and would like to support my efforts in this channel, you can do so here: www.patreon.com/charmingdata
Good morning, Allan. I am trying to gather more supporters to create higher quality educational tutorials on Dash 👨🏽🏫 My goal is to reach 15 supporters, and it would be great if you were one of my first 15 😊 www.patreon.com/charmingdata If you were able to create any dashboards, I'd love to see them.
I know this is late but if you inspect the HTML on the webpage you can easily show the size of the HTML components by hovering over it in the inspect window. Good video tho thank you.
Gracias Cristian. Espero que le hayan ayudado aprender mucho sobre Dash mis videos. Si llegas a crear unos dashboards con Dash, ¡no te inhibas! Comparte por favor.
Thank you so much for always making great tutorials that make me learn such cool stuff easily. Looking forward to seeing more advanced topics coming out.
Hi Adam, Thanks for these awesome well explained tutorials.Great job!👍 Still going through them on by one I am struggling to find the list of all possible classnames one can use within class_name parameter for bootstrap components.Is there a compiled documentation?
Hi @CharmingData , thanks very much for the tutorial. I have one question which is that I am trying to change the font size, width and height of dash datepicker range component by passing the style parameter but nothing seems to happen. Can you please suggest something for this? Thanks Rajat
Thanks for the amazing video. I would like to know if there is any way to control the x and y coordinates of my app's bootstrap. Depending on the device the user views my app with, can I control the width and height of charts and tables?
hi, what do you mean by unscrollable desktop dashboard? you mean a dashboard with a limited height that would fit on most screens without having to scroll?
@@divyangpatel8803 hi, I'm not sure you need a tutorial about this. What you need to do is make sure the total height of the main Div of the layout does not surpass a certain screen size. Here are common screen sizes: www.designrush.com/agency/web-development-companies/trends/website-dimensions
Hi! thank you for your videos, they're really helpful for learn dash!! I have a question, what if I want to divide de row in two? for example, I want to make a chart of size 6 and next to it to charts (one above from other), all in the same row. How I can do that? Thank you! cheers from Argentina!
Hi @gaston, I think you can do something like this: dbc.Row([ dbc.Col([ dcc.Graph() ],width=6), dbc.Col([ dbc.Row([ dcc.Graph() ]), dbc.Row([ dcc.Graph() ]), ],width=6) ])
OK, I hate I have to ask you this question, but do you have any recommendations for a FLASK course? I like your teaching style, but you don't appear to have a course for the structure of Flask? Please advise.......
Hi David, I honestly don't. I plan to make a tutorial on flaks in a few weeks but that might be too late for you. I wish I knew a good tutorial on that but I don't since I haven't started looking into it. Sorry. Good luck,
OK, I think I found the answer. We should learn Flask and embed the DASK app into the Flask app with 2 lines of code.... hackersandslackers.com/plotly-dash-with-flask/
Hey dude, really amazing video! Just one question: I want to use the dbc.table because it is really nice to look at in comparison to the dash datatable. I would like to select a row, and based on that selection change something else in the dashboard with a callback. With dash data table pretty straightforward but i'm really struggling to find information about row selection with the bootstrap table. Do you know how to do this (or where i can information about this stuff)? Thanks in advance....
Jasppp, that might not be possible. The Bootstrap Table is a replacement for the html.table(), so it doesn't have those features that the Dash DataTable has. Maybe you can include an id insider the html.Tr() like this: html.Tr(id="my-table", [html.Td("Arthur"), html.Td("Dent")]) Then, try to use that in the callback to graph the data inside the row. But it's a lot more complex than the Dash DataTable. I would recommend sticking to that. Good luck,
@@CharmingData thanks a lot! I thought it would be possible since the 'hover' argument highlights a certain row when you hover over it (duhuhhhh). But maybe i just have to put a lot of time in styling the dash data.table. thanks for the reply!
Hey Adam. Is there a way to create a custom css sheet that can be used separate from the .py file? Basically I'm looking for a way to have a style sheet including a header and an image that I can just tack onto any dashboard I create
Can we use more than one stylesheet? let say one as directly from internet in externalsheet variable and other different in assets folder. Will this also contradict?
Hi @it's_me . I think it's possible but they might contradict each other if they have code that overlap. Unless you're a CSS expert, I would use one sheet.
Hi sir, your videos are really nice & very helpful. i want to plot more no of plots in a single row without the condition(12 columns), bootstrap grid system has default 12 columns , but i want to plot more than 12 columns in a single row, i'm really in need of help, so please let me know if you have any idea.
HI Ramya, Thanks for watching my tutorials. What do you mean you want to plot more columns in one row? I don't think that's possible. Here's an article on the topic: medium.com/wdstack/bootstrap-exceed-12-columns-in-a-row-b551eeddf62b#:~:text=The%20Bootstrap%20grid%20has%20only,12%20columns%20in%20a%20row. Are you trying to have more than 12 plots in one row?
Hi Adam. Thank you for the great content. Have you tried to switch the themes by clicking on a button? I assigned the default theme url in a variable and overwrote the variable on the PB callback, but it doesn't work. Would appreciate your help or any hint
Hi Mos, I don't think that possible. Anything outside/above the layout in Dash is loaded only once, when the app first loads. Only the components and attributes inside the layout can change with the callback. So if there is a way to define bootstrap theme inside the app.layout, you would be able to change that with a callback. One way you can change a theme with a callback is through the Div className, as suggested in this post. community.plotly.com/t/switch-the-local-css-sheets-in-the-python-code/26864
@@CharmingData it's already installed, i have a project using the previous dash it works fine but when i upgraded dash dbc doesn't function at all. I looked in the docs, stockoverflow nd all nothing worked 😢
@@allanmathews2093 yes, you can. It depends what data you want to put inside the datatable. Use the Dash callback, where the input represents the data you'd like the table to have, and Output would insert the data inside the Table: dash-bootstrap-components.opensource.faculty.ai/docs/components/table/
Hello, Thanks for this helpful tutorial. When running this code I am getting the following error "TypeError: cannot convert 'NoneType' object to bytes". Do you have any idea about it? Thanks in advance
Hi @statrace. It could be many things. What line of coffee is giving you that error? Do you have any idea where the bytes is coming from? Are you using an excel sheet for data?
@@CharmingData I see the following error on Chrome TypeError TypeError: cannot convert 'NoneType' object to bytes Traceback (most recent call last) File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2463, in __call__ return self.wsgi_app(environ, start_response) File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2449, in wsgi_app response = self.handle_exception(e) File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 1866, in handle_exception reraise(exc_type, exc_value, tb) File "/opt/anaconda3/lib/python3.7/site-packages/flask/_compat.py", line 39, in reraise raise value File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2446, in wsgi_app response = self.full_dispatch_request() File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 1952, in full_dispatch_request return self.finalize_request(rv) File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 1969, in finalize_request response = self.process_response(response) File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2266, in process_response response = handler(response) File "/opt/anaconda3/lib/python3.7/site-packages/flask_compress.py", line 109, in after_request response.set_data(compressed_content) File "/opt/anaconda3/lib/python3.7/site-packages/werkzeug/wrappers/base_response.py", line 355, in set_data value = bytes(value) TypeError: cannot convert 'NoneType' object to bytes The debugger caught an exception in your WSGI application. You can now look at the traceback which led to the error. To switch between the interactive traceback and the plaintext one, you can click on the "Traceback" headline. From the text traceback you can also create a paste of it. For code execution mouse-over the frame you want to debug and click on the console icon on the right side. You can execute arbitrary Python code in the stack frames and there are some extra helpers available for introspection: dump() shows all variables in the frame dump(obj) dumps all that's known about the object Brought to you by DON'T PANIC, your friendly Werkzeug powered traceback interpreter.
@@CharmingData I see the following at the end of the error: File "/opt/anaconda3/lib/python3.7/site-packages/werkzeug/wrappers/base_response.py", line 355, in set_data value = bytes(value) TypeError: cannot convert 'NoneType' object to bytes 127.0.0.1 - - [28/Oct/2020 10:11:49] "GET /favicon.ico HTTP/1.1" 500 -
Hi, I tried to run your code but the error pops out - AttributeError: module 'dash' has no attribute ‘Dash’. Do you know how to solve this issue? Thanks!
@@CharmingData Thanks for your response. I solve this issue by moving the code and data file to a new working directory. However, the "dbc column component" seems not work: all the “column components” in the same “row component” display in separate rows. Do you why this happens? My dash version is 1.16.2 and my dash-bootstrap-components version is 0.10.6.Thanks!
@@shaokangtong1983 You're welcome Shaokang, and congratulations on your new dashboard. If you have any more questions, feel free to let me know. Also, if you'd like to support my efforts and creation of additional tutorials, I'd be very thankful. www.patreon.com/charmingdata Have a wonderful weekend. Adam
Really appreciate your videos! Thank you for all the awesome tutorials! My team and I were able to create a beautiful dashboard thanks to your wealth of knowledge and your willingness to share it! Thanks again!!! Looking forward to watching more of your content!
Hi everyone, good luck with your learning. Don't forget to download the supporting documents here: drive.google.com/file/d/1Mmbw915FOL_oZ08b1ayEpHDHFnmnx8SM/view?usp=sharing
👉If you benefitted from these tutorials & would like to show your appreciation & support the existence of more tutorials: www.patreon.com/charmingdata
Thank you 💙
You are just my hero. The whole week i was thinking of you doing a bootstrap tutorial. It is like you read my mind. I did not even follow the tutorial yet,but i am so excited to watch it after writing this comment. Thanks buddy.
Thanks Abel. Hope you like it. Let me know if there is a certain bootstrap component you'd like to see in the next tutorial.
@@CharmingData Collapsible sidebar would be great! Excellent tutorials
6:39 i like your folder naming convention, "Dash_More_Advanced_Shit", defo my style
Thanks! Another great tutrial. I have seen almost all the videos on the channel. Great job. We needed a channel dedicated to Plotly and Dash in greater depth
Thanks Leonardo. I'd like to go into greater depth but I don't want it to be too complex, so I don't lose people. Thanks for the feedback
Sangat jelas sekali ,step by step nya memudahkan Kita yang awam dan baru belajar ini.
Don't give up n keep practicing....nice quote...
Thank you @Akhmad. Good luck.
@@CharmingData Are you willing to help if later we have trouble or don't understand this, can we send an inquiry via email?
@@akhmadsyakhlani2314 Sure @Akgmad, You can send me a quick email to info@charmingdata.org . If you're looking for a deeper consultation and would like to support my efforts in this channel, you can do so here: www.patreon.com/charmingdata
@@CharmingData thank you very much Sir...
thank you so much
I've been watching your videos to help work on a class project. They have been a great help!
Good luck with the class project.
Your videos are gold working on a dash project and this is exactly what i needed. Thank you
You're welcome Henry. Let me known if you have questions while building your apps.
I am new at Dash. But it is easy with you. Thanks a lot!
Amazing tutorials !!! ... I'm glad you mentioned your book in the video, I just bought it in Amazon.
Thank you
Thank you for your explanations
You are my hero.. I have watched all your videos of python and dash.. Million thanks for sharing
You welcome Allan. Hope to see you build great stuff. 💪
Good morning, Allan. I am trying to gather more supporters to create higher quality educational tutorials on Dash 👨🏽🏫 My goal is to reach 15 supporters, and it would be great if you were one of my first 15 😊 www.patreon.com/charmingdata
If you were able to create any dashboards, I'd love to see them.
Thank you so much for such an amazing tutorial. Your teaching is really simple but phenomenal at the same time.
Thank you very much!!! All your tutorials are very good!
Thank you @Thuany. If you would like to support my work, it would mean a lot to me 🤗
www.patreon.com/charmingdata
This video is loaded! Excellent
Also he broke down .py and jupyter codes
Thank you Chris. I hope you like the other videos and become a member if you learn a lot and would like to support my efforts.
Thank you very much for the detailed walkthrough. Greatly appreciated. this was very helpful,🙌🙌
I know this is late but if you inspect the HTML on the webpage you can easily show the size of the HTML components by hovering over it in the inspect window. Good video tho thank you.
Thank you Joshua
Thank you so much for all your videos about dash!!
You are the best. Thank you!
Me parece genial la forma en que explicas cada uno de tus videos. Saludos desde Colombia
Gracias Cristian. Espero que le hayan ayudado aprender mucho sobre Dash mis videos. Si llegas a crear unos dashboards con Dash, ¡no te inhibas! Comparte por favor.
Thank you so much for always making great tutorials that make me learn such cool stuff easily. Looking forward to seeing more advanced topics coming out.
Thank you Shaokang. I just launched my Patreon and plan to put even more advanced stuff there. I hope you can join me 😊
www.patreon.com/charmingdata
God Bless You! Thanks, really!
This channel All in one dash tutorials 👍👍
Well explained and thanks a lot for sharing with us :)
Really nice video. You make it sound so easy and clear. Great work.
Thank you so much for your amazing work
MANY THANKS ADAM!
very useful. thank you
Great video, as always, really like your explanations!
Thank you. I'll be publishing another tutorial on Bootstrap this weekend..I think you'll like it
awesome job!
Great Video!, Could you please make a video of Dash with Mapbox?
Ok Diego. I'll add that to my to-do list. Thanks for the suggestion.
Excelente profesor!!
Gracias @Robert
You're awesome! Thanks for these helpful videos!!
Yo I love the video so far but...
Dash_More_Advanced_Shit in your folders got me rolling!!
Thanks Thomas
Hi Adam, Thanks for these awesome well explained tutorials.Great job!👍
Still going through them on by one
I am struggling to find the list of all possible classnames one can use within class_name parameter for bootstrap components.Is there a compiled documentation?
Hi @CharmingData , thanks very much for the tutorial. I have one question which is that I am trying to change the font size, width and height of dash datepicker range component by passing the style parameter but nothing seems to happen. Can you please suggest something for this?
Thanks
Rajat
Great work!! Your videos are helping me a lot, want to see some videos explaining @callback.
Neel, go to my first video created. That explains the basic callback. Or go see dynamic callback video, that's a little more advanced. Good luck
Thanks for the amazing video. I would like to know if there is any way to control the x and y coordinates of my app's bootstrap. Depending on the device the user views my app with, can I control the width and height of charts and tables?
Hi Carlos,
If I recall correctly, I talk about the here, on the dash bootstrap python file
ruclips.net/video/4nEYCGsyz20/видео.html
Thanks Adam. Is there any tutorial where we can make desktop un-scrollable dashboard?
hi, what do you mean by unscrollable desktop dashboard? you mean a dashboard with a limited height that would fit on most screens without having to scroll?
@@CharmingData Yes.
@@divyangpatel8803 hi, I'm not sure you need a tutorial about this. What you need to do is make sure the total height of the main Div of the layout does not surpass a certain screen size. Here are common screen sizes:
www.designrush.com/agency/web-development-companies/trends/website-dimensions
@@CharmingData Will check. Thanks
how about setting background color?
Hi! thank you for your videos, they're really helpful for learn dash!! I have a question, what if I want to divide de row in two? for example, I want to make a chart of size 6 and next to it to charts (one above from other), all in the same row. How I can do that? Thank you! cheers from Argentina!
Hi @gaston, I think you can do something like this:
dbc.Row([
dbc.Col([
dcc.Graph()
],width=6),
dbc.Col([
dbc.Row([
dcc.Graph()
]),
dbc.Row([
dcc.Graph()
]),
],width=6)
])
@@CharmingData thanks!! You're the best!
OK, I hate I have to ask you this question, but do you have any recommendations for a FLASK course? I like your teaching style, but you don't appear to have a course for the structure of Flask? Please advise.......
Hi David, I honestly don't. I plan to make a tutorial on flaks in a few weeks but that might be too late for you. I wish I knew a good tutorial on that but I don't since I haven't started looking into it. Sorry.
Good luck,
Question? Is it necessary to learn the ins/outs of Flask with the Flask running under the hood of DASH? Your opinion is valuable.......... Thanks
OK, I think I found the answer. We should learn Flask and embed the DASK app into the Flask app with 2 lines of code.... hackersandslackers.com/plotly-dash-with-flask/
Thank you!
How to put background image in dash?
Thank you for this. I learned alot
Hey dude, really amazing video! Just one question: I want to use the dbc.table because it is really nice to look at in comparison to the dash datatable. I would like to select a row, and based on that selection change something else in the dashboard with a callback. With dash data table pretty straightforward but i'm really struggling to find information about row selection with the bootstrap table. Do you know how to do this (or where i can information about this stuff)? Thanks in advance....
Jasppp, that might not be possible. The Bootstrap Table is a replacement for the html.table(), so it doesn't have those features that the Dash DataTable has. Maybe you can include an id insider the html.Tr() like this:
html.Tr(id="my-table", [html.Td("Arthur"), html.Td("Dent")])
Then, try to use that in the callback to graph the data inside the row. But it's a lot more complex than the Dash DataTable. I would recommend sticking to that.
Good luck,
@@CharmingData thanks a lot! I thought it would be possible since the 'hover' argument highlights a certain row when you hover over it (duhuhhhh). But maybe i just have to put a lot of time in styling the dash data.table. thanks for the reply!
You are amazing! Thanks a lot for this video ♪♥
There is a margin (left and right) in the dashboard that cannot be removed. Please advise if any solution is available.
Hi Sofien. Can you please share screenshot of what you mean? What minute in the video can I see this?
Hey Adam. Is there a way to create a custom css sheet that can be used separate from the .py file? Basically I'm looking for a way to have a style sheet including a header and an image that I can just tack onto any dashboard I create
Can we use more than one stylesheet? let say one as directly from internet in externalsheet variable and other different in assets folder. Will this also contradict?
Hi @it's_me . I think it's possible but they might contradict each other if they have code that overlap. Unless you're a CSS expert, I would use one sheet.
Hi sir, your videos are really nice & very helpful. i want to plot more no of plots in a single row without the condition(12 columns), bootstrap grid system has default 12 columns , but i want to plot more than 12 columns in a single row, i'm really in need of help, so please let me know if you have any idea.
HI Ramya,
Thanks for watching my tutorials. What do you mean you want to plot more columns in one row? I don't think that's possible. Here's an article on the topic: medium.com/wdstack/bootstrap-exceed-12-columns-in-a-row-b551eeddf62b#:~:text=The%20Bootstrap%20grid%20has%20only,12%20columns%20in%20a%20row.
Are you trying to have more than 12 plots in one row?
Hi Adam. Thank you for the great content. Have you tried to switch the themes by clicking on a button? I assigned the default theme url in a variable and overwrote the variable on the PB callback, but it doesn't work. Would appreciate your help or any hint
Hi Mos,
I don't think that possible. Anything outside/above the layout in Dash is loaded only once, when the app first loads. Only the components and attributes inside the layout can change with the callback. So if there is a way to define bootstrap theme inside the app.layout, you would be able to change that with a callback.
One way you can change a theme with a callback is through the Div className, as suggested in this post.
community.plotly.com/t/switch-the-local-css-sheets-in-the-python-code/26864
nice video gg
Hey I tried to work with dash-bootstrap with dash 2 i get this error that it doesn't identify dbc what can i do is there a solution
hi Alayet, try opening your terminal and instaliing dbc with: pip install dash-bootstrap-components
@@CharmingData it's already installed, i have a project using the previous dash it works fine but when i upgraded dash dbc doesn't function at all. I looked in the docs, stockoverflow nd all nothing worked 😢
@@alayetmanel6986 try adding dbc.theme.bootstrap inside the app = Dash(__name__)
Hey, is it possible to develop a dashboard using DASH for one of my web scraping codes(using Beautiful soup)?
for sure. I'll add it to my to do list.
@@CharmingData Can't wait for that one! 😍😍
awesome vid! love the filepath....dash_more_advanced....S.....lol
Thanks 👍
Can we do a datatable with call back in bootstrap theme??
Allan, what do you mean callbakc in bootstrap theme? are you trying to use the bootstrap dataTable?
@@CharmingData yep, a bootstrap datatable when user apply filters, the data in the table should also Change.. Is that possible??
@@allanmathews2093 yes, you can. It depends what data you want to put inside the datatable. Use the Dash callback, where the input represents the data you'd like the table to have, and Output would insert the data inside the Table:
dash-bootstrap-components.opensource.faculty.ai/docs/components/table/
Could you make tutorials on multiple pages in Dash?
I'll try 😊. I just need more time
Checkout the official Dash plotly website. They have lots of tutorials including one on multiple pages in Dash.
Posting a multi-page app tutorial tomorrow
@@CharmingData Thank you so much. Im looking forward to it.
Hello, Thanks for this helpful tutorial. When running this code I am getting the following error "TypeError: cannot convert 'NoneType' object to bytes". Do you have any idea about it? Thanks in advance
Hi @statrace. It could be many things. What line of coffee is giving you that error? Do you have any idea where the bytes is coming from? Are you using an excel sheet for data?
@@CharmingData I see the following error on Chrome
TypeError
TypeError: cannot convert 'NoneType' object to bytes
Traceback (most recent call last)
File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2463, in __call__
return self.wsgi_app(environ, start_response)
File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2449, in wsgi_app
response = self.handle_exception(e)
File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 1866, in handle_exception
reraise(exc_type, exc_value, tb)
File "/opt/anaconda3/lib/python3.7/site-packages/flask/_compat.py", line 39, in reraise
raise value
File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2446, in wsgi_app
response = self.full_dispatch_request()
File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 1952, in full_dispatch_request
return self.finalize_request(rv)
File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 1969, in finalize_request
response = self.process_response(response)
File "/opt/anaconda3/lib/python3.7/site-packages/flask/app.py", line 2266, in process_response
response = handler(response)
File "/opt/anaconda3/lib/python3.7/site-packages/flask_compress.py", line 109, in after_request
response.set_data(compressed_content)
File "/opt/anaconda3/lib/python3.7/site-packages/werkzeug/wrappers/base_response.py", line 355, in set_data
value = bytes(value)
TypeError: cannot convert 'NoneType' object to bytes
The debugger caught an exception in your WSGI application. You can now look at the traceback which led to the error.
To switch between the interactive traceback and the plaintext one, you can click on the "Traceback" headline. From the text traceback you can also create a paste of it. For code execution mouse-over the frame you want to debug and click on the console icon on the right side.
You can execute arbitrary Python code in the stack frames and there are some extra helpers available for introspection:
dump() shows all variables in the frame
dump(obj) dumps all that's known about the object
Brought to you by DON'T PANIC, your friendly Werkzeug powered traceback interpreter.
I am just using the data you provided in csv format
@@statrace6914 does it say what line of code the error is on?
@@CharmingData I see the following at the end of the error: File "/opt/anaconda3/lib/python3.7/site-packages/werkzeug/wrappers/base_response.py", line 355, in set_data
value = bytes(value)
TypeError: cannot convert 'NoneType' object to bytes
127.0.0.1 - - [28/Oct/2020 10:11:49] "GET /favicon.ico HTTP/1.1" 500 -
I am using firefox and for some reason, it does not show any colors when I use different themes.
Tech, if you use Chrome does it matter? does it show color in chrome?
@@CharmingData Yes. It works.
Hi, I tried to run your code but the error pops out - AttributeError: module 'dash' has no attribute ‘Dash’. Do you know how to solve this issue? Thanks!
Do you have any file named dash.py? What version of Dash do you have installed?
@@CharmingData Thanks for your response. I solve this issue by moving the code and data file to a new working directory. However, the "dbc column component" seems not work: all the “column components” in the same “row component” display in separate rows. Do you why this happens? My dash version is 1.16.2 and my dash-bootstrap-components version is 0.10.6.Thanks!
@@shaokangtong1983 did you add a bootstrap inside your dash.Dash(...) ?
@@CharmingData It’s amazing! The layout works out perfectly.Thank you so much!
@@shaokangtong1983 You're welcome Shaokang, and congratulations on your new dashboard. If you have any more questions, feel free to let me know. Also, if you'd like to support my efforts and creation of additional tutorials, I'd be very thankful. www.patreon.com/charmingdata
Have a wonderful weekend. Adam
This is so perfect. Do you have a patreon page?
Thank you for your encouragement, Stefan. I'll be setting it up soon. I'll let you know
Hi Stefan, I just created my Patreon page. I hope you can join me 👍
www.patreon.com/charmingdata
@@CharmingData done ;-)
@@GordonShamway1984 thank you🤗
/kiss
Really appreciate your videos! Thank you for all the awesome tutorials! My team and I were able to create a beautiful dashboard thanks to your wealth of knowledge and your willingness to share it! Thanks again!!! Looking forward to watching more of your content!
Dash_More_Advanced_Shit