Possible to hide legend?
See original GitHub issueR ggplot supports theme(legend.position = "none")
, but plotnine doesn’t appear to recognize 'none'
in theme(legend_position='none')
.
Is there another way to do this, or is this a feature that would need to be added?
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (2 by maintainers)
Top Results From Across the Web
How to remove a legend label without removing the data series
In Excel 2016 it is same, but you need to click twice. ... - Then click on the specific legend which you want...
Read more >How to show or hide a chart legend or data table in Excel
With Microsoft Excel, you can show or hide the legend of a chart. Showing a legend can give readers more information about the...
Read more >How to hide legend with Plotly Express and Plotly
After creating the figure in plotly, to disable the legend you can make use of this command: fig.update_layout(showlegend=False).
Read more >Hide legend | WordPress.org
I would like to hide the label (and therefore enforce showing all feeds) as this takes a lot of space on top of...
Read more >Its possible to hide one legend item? - Plotly Community Forum
Its possible to hide one legend item? ... Hi @yuricda96, graph_objects traces have a showlegend keyword argument which you can set to False....
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
For anyone else looking at this in the future, I was also able to hide the legend by adding
show_legend=False
in my call to thegeom
.A workaround for this in the meantime is to set
guide=False
inscale_*
functions