dashboard

Taipy Callbacks could not match the selection with the wanted chart to appear

Taipy Callbacks could not match the selection with the wanted chart to appear Question: I want to create a list of selections such as ["Global suicides by year", "Global suicides by genders"] as the picture shows below. As I want to click on the selection, the corresponding chart will then appear. For example, if I …

Total answers: 1

How to update DataTable interactively with a callback function in dash?

How to update DataTable interactively with a callback function in dash? Question: I feel like this is a basic problem and I`ve looked through all relevant topics on SO but still can’t manage to update a simple table in dash with interactive input. Basically I have a table that contains data and want to be …

Total answers: 1

Plotly Dash – callback dash table on python doesnt trigger

Plotly Dash – callback dash table on python doesnt trigger Question: I have an app with multiple pages, controlled from this index, in a new page I want to insert a dash table and assign some interactivity using callbacks. Take a basic dash table example (https://dash.plotly.com/datatable) and insert it into my app, but the callback …

Total answers: 1

Dash+plotly+bootstrap help needed, arranging custom headers/labels to graph

Dash+plotly+bootstrap help needed, arranging custom headers/labels to graph Question: I’d like to know how to get 10 headers spaced out evenly over a bootstrap column, the goal is to align them with the bars in my bar graph in the row/column above. I don’t even know how to google for this, where should i start? …

Total answers: 1

Is it possible to register Dash pages from an external module?

Is it possible to register Dash pages from an external module? Question: I have an existing Dash app which essentially implements the new Dash pages functionality with some in house code. Our "pages" are in a separate repo which is packaged separately from our Dash server package (we extend some of the base Dash server …

Total answers: 1

Python: ipywidgets not showing output

Python: ipywidgets not showing output Question: I wrote a python script that should have a data frame as output, but it does not show any output. Below is the python code: import pandas as pd import numpy as np import ipywidgets as widgets import datetime from ipywidgets import interactive from IPython.display import display, Javascript from …

Total answers: 1

Python Panel passing dataframe to param.Parameterized

Python Panel passing dataframe to param.Parameterized Question: Python Panel passing a dataframe in param.Parameterized class I can build a dashboard using panel. I know want to include the code in a class including the data manipulation. df = ydata.load_web(rebase=True) class Plot(param.Parameterized): df = df col = list(df.columns) Index1 = param.ListSelector(default=col, objects=col) Index2 = param.ListSelector(default=col[1:2], objects=col) …

Total answers: 1