Software
Blog
Course
More
How to disable the legend on the chart?
Hi there, you can disable this feature if you by setting the canvas to canvas.canvas instead of canvas.
Your code probably looks something like this:
Line = LineChart.line_chart(df=df, canvas=canvas)
Please replace by:
Line = LineChart.line_chart(df=df, canvas=canvas.canavas)
This is sort of a hack at the moment. A future version of the software will have an optional argument to disable the legend.
Hi there, you can disable this feature if you by setting the canvas to canvas.canvas instead of canvas.
Your code probably looks something like this:
Line = LineChart.line_chart(df=df, canvas=canvas)
Please replace by:
Line = LineChart.line_chart(df=df, canvas=canvas.canavas)
This is sort of a hack at the moment. A future version of the software will have an optional argument to disable the legend.