Peter Buxton

Results 8 issues of Peter Buxton

In summary I am using Apache as the web-server, but the importing of `app` causes the error: **`'Read-only: can only be set in the Dash constructor or during init_app()'`** This...

Hello, Setting the colormap is ignored when using fill. ``` matlab clear; figure; hold on; fill( [1 2 2 1],[1 1 2 1], 0.2 ); fill( [1 2 1 1],[1...

Hello, Adding ```LineStyle='non'``` in ```fill``` and ```patch``` fails. Here is an example with ```fill```, but the same happens with ```patch```. ``` matlab clear; figure; hold on; fill( [1 2 2...

cleanfigure() does not clean contours, however a workaround using contourc does exist but is a bit annoying. ``` matlab % Does not work clear; p = peaks; x = 1:1:size(p,1);...

Example: ```python import dash import dash_html_components as html import dash_core_components as dcc external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css'] app = dash.Dash(__name__, external_stylesheets=external_stylesheets) app.layout = html.Div([ dcc.Dropdown( id='my-dropdown', options=[ {'label': 'New York City', 'value':...

The "maxHeight" prop should expand the height of the dropdown, which it does. However, **it does not expand the height of the background**. If you have a look at the...

Multiple legends are great! However, I have found an edge case where since `dash=2.12.0` if `legend` isn't used then `legend2`, `legend3` **stop working**. Expected behaviour: when you click a legend...

Hello. This is a nice and useful crate. I found that `x_origin` and `y_origin` are off by 1/2 a step size. You could either change how the API works or...