plotly / dash-alternative-viz

Dash components & demos to create Altair, Matplotlib, Highcharts , and Bokeh graphs within Dash apps.
https://dash.plotly.com
MIT License
7 stars 1 forks source link

There is a typo in library yoooooo word gets printed along with library #13

Closed vishaltambe70 closed 2 years ago

vishaltambe70 commented 2 years ago

typo

at left top corner typo yooooooo is present , will you please help me regarding that

emyrr commented 2 years ago

I am also getting this issue on every HighCharts component I include in my app. The text 'yoooooo' appears in the top left corner of every chart. Bokeh charts and SVG appear to be fine, the issue is solely with Highcharts.

Does anyone have any suggestions on how to fix this issue?

Example of the issue below:

image


import dash
from dash import html
import dash_alternative_viz as dav

chart_options = {
    'series':[{
        'data': [
    [100, 240, 3],
    [200, 130, 10],
    [450, 290, 15]
        ]
    }]
}

app = dash.Dash()

app.layout = html.Div(dav.HighChart(id='test_chart', options=chart_options))

if __name__ == '__main__':
    app.run_server(debug=False)
sanjaymeena commented 2 years ago

I am also getting this issue on every HighCharts component I include in my app. The text 'yoooooo' appears in the top left corner of every chart. Bokeh charts and SVG appear to be fine, the issue is solely with Highcharts.

Does anyone have any suggestions on how to fix this issue?

Example of the issue below:

image


import dash
from dash import html
import dash_alternative_viz as dav

chart_options = {
    'series':[{
        'data': [
    [100, 240, 3],
    [200, 130, 10],
    [450, 290, 15]
        ]
    }]
}

app = dash.Dash()

app.layout = html.Div(dav.HighChart(id='test_chart', options=chart_options))

if __name__ == '__main__':
    app.run_server(debug=False)

It will be great if this issue is fixed!

lukeallpress commented 2 years ago

I haven't actually played around with it, but you can find the string yoooooo in the dash_alternative_viz.dev.js file. Assume deleting that should fix the output.

nicolaskruchten commented 2 years ago

I don't recommend you use the code from master in this repo, rather folks should use the tarball in the 0.0.1 release: https://github.com/plotly/dash-alternative-viz/releases/tag/v0.0.1

nicolaskruchten commented 2 years ago

That said, I've just updated the bundles on master to remove this debugging string :)

emyrr commented 2 years ago

That said, I've just updated the bundles on master to remove this debugging string :)

Perfect, thanks Luke and Nicolas for your help!