Aviv Azran

Results 11 comments of Aviv Azran

I actually just following your guide for unreal engine. I'm trying to use the real-time propagation. I've installed Intel Embree and followed the steps in your guide step by step....

I’m using the official 4.25.3 release and the plugin version available is beta 17 only. And I really need some of the features of beta 18. As for the issue...

I think I experience the issue when trying to render a hiplot.Experiment object exported html string. Ipython displays it fine, and also datapane shows it ok. only issue comes when...

```python import hiplot as hip from bokeh.sampledata.autompg import autompg as df import panel as pn pn.extension() exp = hip.Experiment.from_dataframe(df) html = exp.to_html() pn.pane.HTML(html) browser console ouotput ``` VM446:2 Uncaught Error:...

so is it something to that might happen? Because this can be an amazing component in my opinion. achieved something similar with Plotly pane but rendering stutters on big data...

I’ve also tried make a prototype using ReactiveHTML but got confused with the JavaScript. I think the best approach will be to build the component straight from the JavaScript (or...

Hi, @MarcSkovMadsen so I've managed to come up with some advancement. the `TypeError: Cannot read properties of undefined (reading 'fnOrder')` is caused when "TABLE" is enabled in the`enabled_displays`. ![image](https://github.com/holoviz/panel/assets/39994570/050a8a2a-c4d3-4b33-90ad-8659cd980dde) removing...

I really feel like i'm on the brink of solving this. but I get this in the console: ![image](https://github.com/holoviz/panel/assets/39994570/777cf9b3-2fc0-4512-84b5-ae0872a13509) I have a feeling that CSS handling is off and this...

Think it's related to the bootstrap the package is using. As it doesn't have access to the html inside the shadow dom. Is there a strategy to override this somehow...

```python from hiplot_style import hiplot_styleheets class HiPlotComponent(ReactiveHTML): colorby = param.String() dark_mode = param.Boolean(default=False) values = param.List(default=hiplot_default_data) _template = """ Loading HiPlot... HiPlot needs JavaScript to run """ # _dom_events =...