joseberlines

Results 34 issues of joseberlines

PROBLEM When coding in a jupyter hub environement with jupyter 3.0 it's only possible to to install jupyter lab extensions for individual users if the installation it's done via pip...

currently I create a tooltip resulting in: ![image](https://user-images.githubusercontent.com/33203439/144043694-e0fa955d-47e8-4bdc-a01f-bafb9c62e0ec.png) this is done with: cytoscapeobj.set_tooltip_source('txt_raw') is it possible to change the layout of the popup?

question

Say you are building a Graph node by node, edge by edge, style by style. NO error is raised in the building. then: `display(G)` and nothing appears. How to debug...

Playing around with example: https://github.com/QuantStack/ipycytoscape/blob/master/examples/Labels%20example.ipynb I have been thinking if it would be worth to implement a solution that would create a graph out of a pandas data frame. The...

mentored
hacktoberfest

In one of the examples in the repo we can see a button for changing a class as follows: btn = widgets.Button(description="red edges", disabled=False) ``` def btn_callback(b): for edge in...

In the examples included in the repo I observe two ways of setting style: ``` cytoscapeobj.set_style([ { 'selector': 'node[classes]', 'style': { 'font-family': 'helvetica', 'font-size': '20px', }}, etc etc ``` and...

documentation
enhancement
good first issue

IN the docs is possible to see this code: ``` cyto.on('node', 'click', log_clicks) cyto.on('node', 'mouseover', log_mouseovers) ``` Are those all the interactions possible. I.e. is it possible to code "right...

documentation
enhancement
good first issue

When doing: ``` import ipyvuetify as vue print(vue.Btn) ``` You get an atribute called comm. Such attribute is not part of vuetify button: https://vuetifyjs.com/en/api/v-btn/#props What is that attribute for? is...

I am interesting in finding out the best way to build a class containing several ipyvuetify components as a block. As a little example an input field and two buttons....

I am trying to include in the example: https://github.com/voila-dashboards/voila-gridstack/blob/master/examples/scotch_dashboard.ipynb ipyvuetify elements is there any example available using ipyvuetify elements within the grid? @hbcarlos @jtpio thanks