Questions tagged [taipy]

Taipy is an open-source Python library that aims to simplify front-end and back-end development for data-driven applications. Every question related to it can have this tag.

Taipy is an open-source Python library that aims to simplify front-end and back-end development for data-driven applications.

Taipy provides a simple and low-code syntax that accelerates the process of creating interactive and customizable multiple-page dashboards with augmented Markdown. Our web application builder generates highly interactive interfaces without requiring any knowledge of web development. Additionally, Taipy is designed to build powerful and customized data-driven back-end applications, with intuitive components to organize and manage data through pipelines and data flow orchestration.

59 questions
1
vote
1 answer

How to change colors from light mode to dark mode in Taipy charts?

I could not understand how to change colors automatically in a Taipy chart from light mode to dark mode. Is there a way to do it?
Areth
  • 185
  • 5
1
vote
1 answer

How to use on_action upon clicking a table row in Taipy

I would like to be able to click on a row and show a specific image depending on the row. from taipy.gui import Gui data = {"fruits":['apple', 'banana', 'apple', 'orange', 'banana', 'mango'], "width":[12, 12, 31, 4, 8, 6],} md =…
Areth
  • 185
  • 5
1
vote
1 answer

How to predefine bar labels in a Taipy histogram with dynamically changing data?

I am currently working on a project where I need to create a histogram using Taipy. The data for the histogram consists of a list of strings, and the criteria for data selection can change dynamically. As a result, the set of occurring strings in…
Areth
  • 185
  • 5
1
vote
1 answer

How to retrieve the full traceback in Taipy when an exception is raised?

I'm encountering an issue while working with Taipy, where exceptions raised by the framework don't provide the complete traceback information like Python does by default. This lack of detailed traceback makes it difficult for me to debug my code…
Areth
  • 185
  • 5
1
vote
1 answer

Taipy layout annotation text not updating itself when callback is triggered

I am trying to create a network graph like this (https://plotly.com/python/network-graphs/). It all worked fine until I try to add some annotation texts next to the links in the network graph. The issue is that the annotation text is not…
Yu Jiang
  • 78
  • 5
1
vote
1 answer

How to highlight a selected row of a table in Taipy?

I am working with Taipy GUI to create a web app. So far I am able to generate a table and keep track of a selected row of the table. However, I want to show the user which row they selected by highlighting it on the frontend. I couldn't find how to…
1
vote
1 answer

Taipy 2.0 & MySQL

I’m trying to explore some data we have in a MariaDB database, and after I set up my environment, I tried to install taipy[mysql] as recommended in the manual. At this step, I get a warning : WARNING: taipy 2.0.0 does not provide the extra…
1
vote
1 answer

How to use a dynamically bound variable between pages?

I have a Taipy application with several pages. Each page uses the "run()" method to scope the methods executed. Now, I want that one dynamically assigned State variable state.some_id = "1234abcd" is available in other pages too (to avoid that I have…
1
vote
1 answer

How to split TaiPy GUI multi-page application where each page has its own file?

I want to simplify my multi-page Taipy GUI application by creating one Python file per page. Each new file should contain the Taipy Markdown page format and the custom Python code to manipulate variables used in the page. The basic setup with one…
1
vote
1 answer

Compatibility of Taipy with Python3.11.1

When installing Taipy using Python 3.11.1 the installer backs out during the installation of the greenlet package. The error is as follows: building ‘greenlet._greenlet’ extension error: Microsoft Visual C++ 14.0 or greater is required. Get it with…
1
vote
1 answer

How to click a button programmatically in Taipy

I have a button in Taipy that when clicked calls a function performing some tasks that can give a valid or invalid result. In case of having an invalid result, clicking on another button must simulate a click on the first button (I cannot click on…
1
vote
0 answers

Column cell styling in Taipy's tables

Impressed by your high-potential framework, real next-gen for its simplicity I have some problems with cell styling in tables, namely in columns. For a model example: data = pd.DataFrame( {“Name”:[“John”,”Mary”,”Bob”], “Age”:[32,23,40] } ) page =…
1
vote
2 answers

How do I properly display variables in Markdown headers with Taipy GUI

I built a dashboard application using the Taipy GUI python library. The app has a variable called "country", and its value can be assigned using a drop-down selector, with the following…
eric
  • 43
  • 6
1
vote
1 answer

Heatmap, radar charts in Taipy

Just getting started with Taipy and really like the way I’ve been able to quickly set up a nice dashboard for my data project. I’d like to add a few other graphics, including a heatmap, and a radar chart. How can I get access to some graphics that…
1
vote
1 answer

Taipy’s output collapsed in Visual Studio Code notebook

I’have tried to run code about displaying some things with taipy.gui but it had an error and didn’t give me the output desired exercise code: page_md = “”” # Taipy Test **here** to put some *markdown* Click to access the…