Thanks to visit codestin.com
Credit goes to github.com

Skip to content

v0.2.0

Compare
Choose a tag to compare
@kushalkolar kushalkolar released this 19 Jun 02:45
· 109 commits to main since this release
0edfe7f

Major release

Breaking changes

  • Graphic properties (such as data, colors, thickness etc.) have been refactored. They are much simpler now.
    • Please see this for a description of the new API, concise and in-depth comparison are given: #511 (comment)
    • Events should be added onto graphics now, not onto graphic properties. ex: do not do: line.colors.add_event_handler(), instead do: line.add_event_handler(<callback>, "colors"). Decorators are also supported, for more info see #511 (comment)
    • selector selection is now in data space, and doesn't return indices. For example, linear_selector.selection will return the x or y position of the selector in data space, not the index like before. See the "selectors" section here for more details or the selector docs: #511 (comment)
  • Figure is new and is largely the same as the former Gridplot. Plot no longer exists. See #479

What's Changed

New Contributors

Full Changelog: v0.1.0.a16...v0.2.0