chaffra
chaffra
In the latest version (0.3.3) a fig.canvas does not display correctly in ipywidgets.Tab. Notional example: ``` tab = widgets.Tab() tab.children = [fig1.canvas, fig2.canvas] tab ``` The figures appear in both...
Sometimes I am getting this error with the trunk version. Not sure what a MWE would be. Has anyone encountered this? Thanks, Chaffra ``` RuntimeError Traceback (most recent call last)...
Hello, This PR allows the user to visualize to circuit with SchemDraw while building it. Example ``` circuit = Circuit('Diode Characteristic Curve') circuit.include(spice_library['1N4148']) circuit.schematic.add(schem.elements.GND) V =circuit.V('input', 'Vin', circuit.gnd, 10@u_V, schematic_kwargs={'show_plus':...
Hello, I'd like to propose this PR. It's still a WIP but the idea it to be able to type in python expression in cells and have them executed by...
Can you save the state of a sheet as an image (.png, jpg etc...)?
Is there a way to merge 2 cells so they display the same text or widget? This is really for cosmetic reasons.
Hello, I'd like to find out when a cell or the sheet is selected. Any way to do it? Thanks.
I would like FloatSlider and the other sliders to display a scaled version of the value being changed. For example, I would like to be able to create a slider...
If you have a styled ```df = pandas.DataFrame().style```, you can pass it as ```sdf = solara.DataFrame(df.data)``` but you loose the styling that was applied to df. So if columns were...
The code below allows me to stack 2 assemblies but I don't know how to center them, so that they have the same center in the XY plane. ``` rows...