Skip to content
This repository has been archived by the owner on Feb 19, 2022. It is now read-only.

Feature/voronoi container #432

Merged
merged 28 commits into from
Feb 25, 2017
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
5f0683e
safety commit
boygirl Feb 6, 2017
f8e60a8
working voronoi find
boygirl Feb 6, 2017
cfd26b8
match child calculation to victory-shared-events
boygirl Feb 8, 2017
a412452
clean up selection helper
boygirl Feb 8, 2017
cd732ff
progress on nested component voronoi
boygirl Feb 8, 2017
17f4e9a
safety commit
boygirl Feb 8, 2017
5b2451a
Merge branch 'master' of https://github.com/FormidableLabs/victory-ch…
boygirl Feb 8, 2017
d9086b9
revert map / reduce replacement
boygirl Feb 9, 2017
e5138f2
working voronoi hover
boygirl Feb 9, 2017
923ba2a
fix scatter label padding
boygirl Feb 10, 2017
7f8cfc1
safety commit - individual data labels for line
boygirl Feb 13, 2017
1998018
support data labels for VictoryLine and VictoryArea
boygirl Feb 17, 2017
37889fa
merge master into feature/voronoi-container
boygirl Feb 17, 2017
faf67c1
filter 'all' from dataKeys
boygirl Feb 17, 2017
5f33a8b
clean up demos
boygirl Feb 17, 2017
387c308
multi point tooltips for voronoi container
boygirl Feb 21, 2017
e7a8913
safety commit
boygirl Feb 22, 2017
da911a5
fix flyout positioning
boygirl Feb 22, 2017
832f5d1
add theme to container props
boygirl Feb 22, 2017
b47f0f9
fix line spec
boygirl Feb 22, 2017
2b68023
add deprecation notices for label prop, clean up demos
boygirl Feb 22, 2017
de3be37
add deprecation warnings to old voronoi components
boygirl Feb 22, 2017
566233d
cooler demo
boygirl Feb 23, 2017
e1acc11
Merge branch 'master' of https://github.com/FormidableLabs/victory-ch…
boygirl Feb 23, 2017
187b359
fix lines after merge
boygirl Feb 25, 2017
8593309
reconcile flyout style with themes
boygirl Feb 25, 2017
a83d1e8
update victory-core
boygirl Feb 25, 2017
2b3ce9d
merge master into feature/voronoi-container
boygirl Feb 25, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cooler demo
  • Loading branch information
boygirl committed Feb 23, 2017
commit 566233d205ba300f46b36bef92a26b5b5886bb4e
4 changes: 2 additions & 2 deletions demo/components/victory-voronoi-container-demo.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,14 @@ class App extends React.Component {
<VictoryChart style={chartStyle}
containerComponent={
<VictoryVoronoiContainer dimension="x"
labels={(d) => d.l}
labels={(d) => `y: ${d.y}`}
labelComponent={<VictoryTooltip cornerRadius={0} flyoutStyle={{fill: "white"}}/>}
/>
}
>
<VictoryLine
data={[
{x: 1, y: 5, l: "one"},
{x: 1.5, y: -7, l: "one point five"},
{x: 2, y: 4, l: "two"},
{x: 3, y: -2, l: "three"}
]}
Expand Down