-
Notifications
You must be signed in to change notification settings - Fork 95
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
How do I remove Aa from the legend? #290
Comments
The issues that were solved for plotly.js 2.0.0 was this one here: plotly/plotly.js#5679 , which only removes "Aa" for traces with mode "something+text", not "text". While we should offer users changing the cdn version in the future, Plotly.NET 2.0.0 currently uses plotly.js 2.6.3, so the cdn is not the problem (also, I have skimmed through the plotly.js docs and have not found a way to do what you are trying here. If you can link a js or python sample that can do it, i can help translating it. |
closing until we get an example, until then i assume that this is just not supported by plotly.js itself |
Thank you, Kevin, for looking into this. I will be looking forward to a solution to this. We use the alphabet as a symbol in all our plots.
***@***.***________________________________________________________________
Best Regards,
Sanjay Patel
Senior Software Engineer
Intel Corporation
From: Kevin Schneider ***@***.***>
Sent: Monday, July 11, 2022 6:17 AM
To: plotly/Plotly.NET ***@***.***>
Cc: Patel, Sanjay ***@***.***>; Author ***@***.***>
Subject: Re: [plotly/Plotly.NET] How do I remove Aa from the legend? (Issue #290)
closing until we get an example, until then i assume that this is just not supported by plotly.js itself
—
Reply to this email directly, view it on GitHub<#290 (comment)>, or unsubscribe<https://github.com/notifications/unsubscribe-auth/AZITI5YXHRPAE2EIQ5NJO5DVTQND3ANCNFSM5WSH3MOQ>.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Description
I have created multiple Traces with mode as text. I do not want to show symbols and instead show Alpha characters. When doing this I see Aa in the legend.
Repro steps
Trace overlayTrace = new Trace("scatter");
overlayTrace.SetValue("x", x);
overlayTrace.SetValue("y", y);
overlayTrace.SetValue("name", $"{alphachar} {series}");
overlayTrace.SetValue("mode", "text");
overlayTrace.SetValue("text", alphachar);
Expected behavior
Remove Aa when only Text is shown and no symbol.
Actual behavior
Known workarounds
I am searching for the solution and some suggested updating the plotly cdn to the latest will resolve the issue. Is there a way to update the cdn in Plotly.NET?
Related information
The text was updated successfully, but these errors were encountered: