-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Config option DisplayModeBar is not adhered to #34
Comments
Hi, thank you for the hint. I'll try to fix it. 👍 |
Just took a look at the whole thing. He recognizes "true" with quotes as valid but ignores "false". According to the plotly scheme these are both valid values. I will forward the problem to the plotly team. |
Yeah I see that in the code. Defining as bool works though, but you can't change back to hover after defining the item. If it is left undefined its hover, and if you define the variable its either on or off. I don't think many would want to dynamically change back from either behaviours to hover. Will be good to see what the Plotly folks say. Very nice wrapper Btw. Sure beats my method which was to define the json as as string and send to plotly through the interop. Thankyou! |
Hi, |
The mode bar will always appear in hover mode (the default action).
Setting to False has no effect.
https://plotly.com/javascript/configuration-options/#never-display-the-modebar
Changing Config.cs DisplayModeBar def to below fixes issue:
The text was updated successfully, but these errors were encountered: