Questions tagged [plotly-dash]

Dash, a cutting-edge platform for constructing captivating web-based data visualization applications, stepped into the limelight with its debut on Python. However, to accommodate an even wider audience, Dash has expanded its horizons by introducing revamped versions that are now fully accessible on Julia and R frameworks.

Box-free calendar dash component

Encountering an issue within my application dashboard, here's a direct screenshot: https://i.stack.imgur.com/sEMrM.png The problem is that the Calendar days are extending beyond the borders of the calendar box. To implement this, I simply utilized ...

Configuring Dash application testing with webdriver-manager by setting the local path for Chromedriver

I am currently exploring testing Dash applications using the method outlined in this guide: However, I have encountered an issue with specifying the path of Chromedriver for the webdriver-manager used in dash testing. Below is a snippet of what I attempt ...

What is the procedure for configuring the x-axis to represent a timeline in a plotly icicle graph?

Looking to create an innovative icicle chart where the x-axis reflects a timeline rather than traditional categories. Check out this sample plotly icicle for reference: https://i.stack.imgur.com/0Hfwp.png My goal is to preserve the hierarchical layout wh ...

Tips for preserving the information from a tab in Dash

Here's the issue at hand: Let's consider a scenario where we have x number of tabs, starting with tab1. Suppose we load some data which updates a graph on the page. Next, we navigate to tab2 and then return to tab1. At this point, tab1 reverts to its de ...

Entering values into Dash table during Selenium testing

To better illustrate my issue, I have put together a self-contained example for you to review. Below is: a basic Dash application featuring a single table an attempt to enter a new value into the editable table using Selenium (necessary for testing purpo ...

Adding quotation marks to the string form of a two-dimensional array in Python

My code takes user input from a text box and needs to convert it into a 2D list of strings. The user input comes from a Jupyter Dash text input I am working on creating a design where the user does not have to quote the elements themselves and can simply ...

Utilizing Python with Plotly, Scattermapbox can be customized with distinct colors based

I am looking to highlight certain areas on a map with different colors based on values in a dataframe. The coordinates for each area are defined in the dataframe and I want to use the filled area feature. How can achieve this? (Question is similar to an u ...

What is the process for starting a Dash App that is contained within a package that has already been installed?

In the process of developing a package, I have structured it with a module containing functions (fed3live.py) and another with a Dash App (fed3_app.py). Here is how the package is organized: fed3live/ ├─__init__.py ├─fed3live/ │ └─fed3live.py ...

color of the foreground/background input in a dropdown menu that

I am attempting to modify the foreground or background color utilized by a dash searchable dropdown when text is entered for searching in the list. The input text is currently black, which makes it extremely difficult to read when using a dark theme. Wit ...

Filtering options for plotly dashboard in dropdown format

Below is a dataset along with code that generates a chart: Column A Tools Category role figure Occurences After idx 0 PostgreSQL DatabaseHaveWorkedWith Developer, front-end 38.044286 4 False 1 MySQL DatabaseHaveWorkedWith Developer, front-end 45. ...

Python Sunburst Chart using Plotly Dash: Automatically navigate to a specific starting point upon data update

Currently, I am working on coding a Sunburst chart in Python using Plotly with Dash. View the initial chart here. As I navigate deeper into the leaf nodes, such as the one shown in Sunburst v2 first leaf, and update the graph, it is taking me back to the t ...

Maximizing dashboard interactivity: Implementing crossfiltering across different chart types with Dash Plotly

I'm experimenting with applying crossfiltering to two scatter plots and one parallel coordinates chart. I found an example for crossfiltering a scatter plot, but when I tried to adapt it for a combination of scatter and parallel coordinates charts, it didn ...