-
Notifications
You must be signed in to change notification settings - Fork 48
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
a legend bug #122
Comments
Hi, thanks for the feedback and for sharing the solution! I am glad you solved the problem. We will definitely keep this in mind and fix it in the next release. thanks again! |
Hi wangli-sh, Thanks so much. I just solved my problem in issue #130 My comment |
Thanks for reporting the problem and the solution! We will incorporate it
in the next release of STREAM.
…On Sat, Dec 11, 2021 at 1:45 AM Wang Ziyi ***@***.***> wrote:
recently i find a bug in core.py the raw code is :
ax_i.legend(handles=legend_handles[1:], labels=legend_labels[1:], code in
this way will loss the first legend label i change the code into
ax_i.legend(handles=legend_handles[0:], labels=legend_labels[0:], and the
problem is solved
Hi wangli-sh,
Thanks so much. I just solved my problem in issue #130
<#130> My comment
<#130 (comment)>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#122 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAIH72QO4F3PX7Y46IKJ6YLUQLXR3ANCNFSM45VSG3KQ>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
recently i find a bug in core.py
the raw code is :
ax_i.legend(handles=legend_handles[1:], labels=legend_labels[1:],
code in this way will loss the first legend label
i change the code into
ax_i.legend(handles=legend_handles[0:], labels=legend_labels[0:],
and the problem is solved
The text was updated successfully, but these errors were encountered: