victory

A collection of composable React components for building interactive data visualizations

OTHER License

Downloads
37.4M
Stars
11K
Committers
221

Bot releases are visible (Hide)

victory - 35.6.2

Published by boygirl over 3 years ago

(2021-05-07)

  • #1840 - Improve cursor coordinate type definitions.
  • #1837 - Fix a regression introduced in v35.6.0 impacting inverted domain charts. Thanks @jhumbug!
victory - 35.6.1

Published by boygirl over 3 years ago

(2021-05-05)

  • #1832 - Add support for custom baselines for VictoryStack. Thanks @jhumbug!
  • #1833 - Add missing scale prop type for container type definitions.
victory - 35.6.0

Published by boygirl over 3 years ago

(2021-05-04)

  • #1827 - Points fully outside of a chart domain are now given null values to prevent them from being rendered. Exceptions are made for continuous chart types like VictoryArea and VictoryLine. This PR also includes a fix for animations so that animating data always reaches its final state before a new animation begins. Thanks @jhumbug!
victory - 35.5.1

Published by boygirl over 3 years ago

(2021-04-12)

  • #1819 - Improve built dist output
victory - 35.5.0

Published by boygirl over 3 years ago

(2021-04-07)

  • #1815 - Fix a bug affecting VictoryBrushContainer with allowResize set to false, and use defaultBrushArea="move" by default when allowResize is set to false.
victory - 35.4.13

Published by boygirl over 3 years ago

(2021-04-02)

  • #1812 - Update VictoryTooltip types to allow users to set single dimensions for the center prop
victory - 35.4.12

Published by boygirl over 3 years ago

(2021-03-19)

  • #1807 - Add missing handleWidth type to VictoryBrushContainer interface. Thanks @aknaut!
victory - 35.4.11

Published by boygirl over 3 years ago

(2021-03-04)

  • #1800 - Add missing id prop to VictoryLabelProps interface. Thanks @nielsboecker!
victory - 35.4.10

Published by boygirl over 3 years ago

(2021-03-01)

  • #1799 - Improve event prop interface. Thanks @loganwedwards!
victory - 35.4.9

Published by boygirl over 3 years ago

(2021-02-12)

  • #1789 - Skip the parent namespace when caching event state in VictorySharedEvents. Thanks @the-kwisatz-haderach!
victory - 35.4.8

Published by boygirl over 3 years ago

(2021-02-01)

-#1784 - - Add more font widths for the textsize util. Thanks @eatyourpeas!

victory - 35.4.7

Published by boygirl over 3 years ago

(2021-01-26)

  • #1780 - Remove unused type prop from primitive components used by VictoryAxis and VictoryPolarAxis
  • #1782 - Fix type definition for the getPath prop used by the Point primitive. Thanks @ASmartLynx!
victory - 35.4.6

Published by boygirl over 3 years ago

(2021-01-05)

-#1767 - Adds support for rx and ry props on the Background primitive component. Thanks @NgoKnows!

victory - 35.4.5

Published by boygirl over 3 years ago

(2021-01-04)

  • #1765 - Adds "cross" symbol for VictoryScatter and the Point primitive.

  • #1766 - Allows the bin prop on VictoryHistogram to accept arrays of negative numbers. Thanks @NgoKnows!

victory - 35.4.4

Published by boygirl over 3 years ago

(2020-12-24)

  • #1761 - Add more font widths for the textsize util. Thanks @dlabrecq!
victory - 35.4.3

Published by boygirl over 3 years ago

(2020-12-07)

  • #1755 - Export Portal type
victory - 35.4.2

Published by boygirl over 3 years ago

(2020-12-01)

  • #1751 - Add missing static defaultEvents to VictoryTooltip types. Thanks @beccanelson!
victory - 35.4.1

Published by boygirl over 3 years ago

(2020-12-01)

  • #1750 - Add missing className prop to the Background primitive component. Thanks @beccanelson!
victory - 35.4.0

Published by boygirl over 3 years ago

(2020-11-25)

  • #1748 - Thank you @Hypnosphi!

Support for Global Events

This release adds a concept of global events that are attached to window rather than to any of the elements rendered by Victory components. Global events are only supported for "parent" events that would normally be attached to svg elements rendered by Victory's containerComponents. Events that should be global can be flagged by including onGlobal in the name of the event handler. So, for example, use onGlobalMouseUp rather than onMouseUp to create a global mouse up handler.

VictoryBrushContainer uses Global Events

VictoryBrushContainer now uses global events in its defaultEvents so that brushing continues even as the user's mouse moves outside of the chart area.

victory - 35.3.5

Published by boygirl over 3 years ago

(2020-11-09)

  • #1743 - Add a role prop for VictoryContainer